一起了解 .Net Foundation 项目 No.23

  • 2020 年 4 月 13 日
  • 笔记

.Net 基金会中包含有很多优秀的项目,今天就和笔者一起了解一下其中的一些优秀作品吧。

中文介绍

中文介绍内容翻译自英文介绍,主要采用意译、如与原文存在出入,请以原文为准。

WorldWide Telescope

WorldWide Telescope 是一种可视化环境,它使计算机能够充当虚拟望远镜,将世界上最好的地面和空间望远镜的档案图像汇集在一起,用于探索宇宙。WorldWide Telescope 将来自多个来源的 PB 图像、信息和故事融合到无缝、身临其境的富媒体体验中。

WorldWide Telescope 允许简单和直接地访问天体的观测和所有电磁频谱范围内的所有天空测量。 它汇集了许多令人印象深刻的天体档案——由哈勃太空望远镜、钱德拉X射线天文台、斯皮策太空望远镜、斯隆数字天空等仪器精心构建的天体收藏调查 (SDSS)、两个微米全天空勘测 (2MASS)、普朗克和许多其他调查,同时为其他存档数据源以及尚未进行的观测提供了轻松集成。此外,它还展示了一个宇宙的3D模型,其中详细描绘了行星表面,以及银河系的代表性模型,以及斯隆数字天空调查的星系分布。

WorldWide Telescope 中的数据不仅具有可读性,而且很容易集成。它们以促进综合研究的形式呈现,从而有助于弥合前沿研究、教育和公众理解之间的差距。

WorldWide Telescope 是科学亲民化的重要一步,它使互联网成为”世界上最好的望远镜”——一台名副其实的超级计算机,同时在 Web 客户端版本中实现了大部分功能。

项目详情

相关链接

笔者简评

笔者其实很想把 WorldWide Telescope 翻译为 “宇宙之眼”。通过它,你完全可以手动了解宇宙中众多已知的天体和环境。

该项目是一个站点项目,其核心是应用了 WebGL 在浏览器上进行了图形化展示。当然,这部分实现的核心不是 .Net ,而是采用 js 相关的库进行完成。

英文介绍

WorldWide Telescope

WorldWide Telescope is a visualization environment that enables a computer to function as a virtual telescope — bringing together archival imagery from the world’s best ground- and space-based telescopes for the exploration of the Universe. WorldWide Telescope blends petabytes of images, information, and stories from multiple sources into a seamless, immersive, rich media experience. WorldWide Telescope allows simple and direct access to observations of celestial objects and all sky surveys over the full range of the electromagnetic spectrum. It brings together many impressive archives of celestial objects – collections painstakingly constructed from observations by such instruments as the Hubble Space Telescope, the Chandra X-Ray Observatory, the Spitzer Space Telescope, the Sloan Digital Sky Survey (SDSS), the Two Micron All Sky Survey (2MASS), Planck, and many others while providing easy integration for other archival data sources as well as observations yet to be made. In addition, it presents a 3D model of the Universe with detailed imagery of planetary surfaces and a representative model of the Milky Way as well as the distribution of galaxies from the Sloan Digital Sky Survey.

The data in WorldWide Telescope are not only readily accessible; they are presented in a form that facilitates integrative research, thereby helping to bridge the gap between cutting-edge research, education, and public understanding. WorldWide Telescope represents a major step toward the democratization of science, and it has turned the Internet into “the world´s best telescope” — a veritable supercomputer at your desktop while also enabling most of that functionality in a web client version.

Project Details

Quicklinks

以上《英文介绍》摘录自 .NET Foundation 的项目介绍 。原文受原项目许可证保护。

中文介绍

中文介绍内容翻译自英文介绍,主要采用意译、如与原文存在出入,请以原文为准。

Windows Presentation Foundation (WPF)

Windows Presentation Foundation (WPF) 是一个构建 Windows 桌面程序的 UI 框架。

WPF 包含了一系列开发技术,包括有:应用程序建模、资源管理、控件集、绘图、布局、数据绑定和文档。

WPF 使用 Extensible Application Markup Language (XAML) 为应用编程提供了一种声明式的 UI 建模方案。

WPF 程序基于一个矢量图形架构。这就使得应用程序在高 DPI 显示器上也能展示的非常好,即使被无限的伸缩。

WPF 还包含了一个非常灵活的展示模型,例如,基于此,在一个按钮上展示视频都是非常简单的事情。

在 Visual Studio 中,开发者可以使用可视化编辑器进行拖拽式的 UI 构建,当然直接编辑 XAML 也是可行的。

项目详情

相关链接

笔者简评

WPF 所提供的 MVVM 编程范式和 Windows Forms 的基于事件驱动的方式有很大区别。而现在流行的各类 UI 方案中, MVVM 范式的应用也越来越重。不过 WPF 除了 MVVM 本身,还包含有很多相较于 Windows Forms 更为现代化的设计理念。

微软继 WPF 之后还推出了 Silverlight 和 UWP。现状是 Silverlight 已经凉了, UWP 随着 Windows Phone 凉了一点点。但是 WPF 依旧坚挺,特别是在一些专业领域的应用中,WPF 表现更为耀眼,例如:同花顺

目前, WPF 已经可以基于 netcore 进行开发。

英文介绍

Windows Presentation Foundation (WPF)

Windows Presentation Foundation (WPF) is a UI framework for building Windows desktop applications.
WPF supports a broad set of application development features, including an application model, resources, controls, graphics, layout,
data binding and documents. WPF uses the Extensible Application Markup Language (XAML) to provide a declarative model for application
programming.

WPF applications are based on a vector graphics architecture. This enables applications to look great on high DPI monitors, as they
can be infinitely scaled. WPF also includes a flexible hosting model, which makes it straightforward to host a video in a button,
for example. The visual designer provided in Visual Studio makes it easy to build WPF application, with drag-in-drop and/or direct
editing of XAML markup.

Project Details

以上《英文介绍》摘录自 .NET Foundation 的项目介绍 。原文受原项目许可证保护。

中文介绍

中文介绍内容翻译自英文介绍,主要采用意译、如与原文存在出入,请以原文为准。

Xamarin.Auth

Xamarin.Auth 是一个跨平台的API,用于进行用户的身份认证处理和对账号的存储处理。

项目详情

相关链接

笔者简评

该库主要用于处理 Xamarin 系列的移动端 .Net 开发中涉及到的客户端身份认证问题。

目前主要支持的是 OAuth 1.0 和 OAuth 2.0 协议,以及相关的 IdP 。

英文介绍

Xamarin.Auth

Xamarin.Auth is a cross-platform API for authenticating users and storing their accounts.

Project Details

Quicklinks

以上《英文介绍》摘录自 .NET Foundation 的项目介绍 。原文受原项目许可证保护。

其他项目