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

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

中文介绍

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

Windows Template Studio

Windows Template Studio 是一个 Visual Studio 2017 插件,它通过分步指导的方式加快创建 Universal Windows Platform (UWP) 应用。

创建好的 UWP 项目格式良好,代码可读,并包含了最新的 Windows 10 特性,同时实现了经过验证的设计模式和最佳实践。在生成的代码中,我们将相关的文档、Stack Overflow 和博客文章都标记在生成的代码中,以便开发者参阅。

项目详情

相关链接

笔者简评

该项目是 VS 插件项目,它支持 2017 及以上的版本。能够用于创建 WPF 和 UWP 应用的项目模板。

如果你对构建一个 WPF 或者 UWP 的项目风格存有疑虑,那么可以考虑通过这个插件进行创建。不仅仅只是生成代码这么简单,重要的是模板本身提供的思路。

当然,也可以通过这个项目,学习如何做一个更好的 VS 插件。

英文介绍

Windows Template Studio

Windows Template Studio is a Visual Studio 2017 Extension that accelerates the creation of new Universal Windows Platform (UWP) apps using a wizard-based experience. The resulting UWP project is well-formed, readable code that incorporates the latest Windows 10 features while implementing proven patterns and best practices. Sprinkled throughout the generated code we have links Docs, Stack Overflow and blogs to provide useful insights.

Project Details

Quicklinks

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

中文介绍

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

Windows Forms

Windows Forms (WinForms) 是用于构建 Windows 桌面程序的 UI 框架。

它是 Windows 用户界面类库的 .NET 封装,例如 User32 和 GDI+。框架也包括了一些常用控件和其他一些 Windows Forms 独有的功能。

Windows Forms 同时也通过 Visual Studio 提供了一种非常高效的桌面程序设计器。其提供了拖拽式的可视化控件以及其他一些类似的功能,使得构建桌面程序变得简单。

项目详情

相关链接

笔者简评

尽管如今开发桌面程序并非只有 Windows Forms 一种方式了(向来也不是),但其仍然占有很重要的一席之地。如今,借由 netcore 更是从底层上焕发出了新的生命力。

该项目是基于 netcore 3.1 之上的 Windows Forms 框架源码。基于 .Net Framework 的并不在这个项目中。

如果你手上有需要从 Framework 迁移到 netcore 的 Windows Forms 项目,可以参看这个链接

英文介绍

Windows Forms

Windows Forms (WinForms) is a UI framework for building Windows desktop applications.
It is a .NET wrapper over Windows user interface libraries, such as User32 and GDI+. It also offers controls and other
functionality that is unique to Windows Forms.

Windows Forms also provides one of the most productive ways to create desktop applications based on the visual designer
provided in Visual Studio. It enables drag-and-drop of visual controls and other similar functionality that make it easy to
build desktop applications.

Project Details

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

中文介绍

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

WiX Toolset

如果你想构建一个 Windows 安装工具,那么 WiX Toolset 已经准备了一组强大的工具随时待命。

创建安装包的过程可以无缝的接入你的开发过程中,完美与 Visual Studio 集成。

项目详情

相关链接

笔者简评

制作 Windows 安装包,离不开一个称为 InstallShield 的商业解决方案。而假若需求并不复杂,那么 WiX Toolset 就是一个有力的替代方案。

因此,作为免费方案被很多开源软件所使用。

英文介绍

WiX Toolset

WiX Toolset provides the most powerful set of tools available to create your Windows installation experience.

Seamlessly integrate installation package creation into your development process with text based source code compiled and linked with tasks for MSBuild and Visual Studio integration.

Project Details

Quicklinks

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

其他项目

原文地址:https://www.cnblogs.com/newbe36524/p/12602004.html