码迷,mamicode.com
首页 > Windows程序 > 详细

【突发】【WinForm】Visual Studio 2019 16.4.6 更新之后的意外之喜

时间:2020-03-12 22:04:08      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:打开   false   第三方   ace   工程   blog   location   代码   一个   

正文

? 今天下班回家的路上,在群里发现群友说Visual Studio 2019更新了,貌似支持了WinFromdesigner文件。回家之后,打开心爱的小本本,将Visual Studio 2019完之后,去巨硬的官方看了一下更新公告。

技术图片

发现并没有列出此项作为更新项。又失望的以为群友在晃点我。然后,建立了一个测试工程。发现沙雕群友竟然没有晃点我~ 让我们来看看这次更新带来的意外之喜吧~

建立项目

  • 打开VS2019,点击创建新项目,选择模板的时候。选择Windows Forms App(.NET Core)。如下图所示。

    技术图片

  • 下一步,填写项目名称,选择项目路径。

    技术图片

  • 下一步,我们的测试项目就创建完成了~

    技术图片

  • 点开Project文件,查看项目架构~

    技术图片

  • 再点看Form1看一下~

    技术图片

    看到熟悉的文件了~~

添加控件

? 我尝试了一下,发现现在还是无法使用设计模式预览Designer文件。当然也有可能是我还没有仔细研究过~不过这也无伤大雅,我们来手动添加控件测试一下。

注意:Visual Studio Enterprise 2019 Preview 16.5.0 Preview 4.0开始就支持设计模式。附上微软官方开发人员的Blog地址:一个美女的Blog~

  • 添加一个Text控件,整个Designer文件代码如下。

    using System.Windows.Forms;
    
    namespace dotnetCoreFromTest
    {
        partial class Form1
        {
            /// <summary>
            ///  Required designer variable.
            /// </summary>
            private System.ComponentModel.IContainer components = null;
    
            /// <summary>
            ///  Clean up any resources being used.
            /// </summary>
            /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
            protected override void Dispose(bool disposing)
            {
                if (disposing && (components != null))
                {
                    components.Dispose();
                }
                base.Dispose(disposing);
            }
    
            #region this.Controls
    
            /// <summary>
            /// textBox1
            /// </summary>
            private TextBox textBox1;
    
            #endregion
    
            #region Windows Form Designer generated code
    
            /// <summary>
            ///  Required method for Designer support - do not modify
            ///  the contents of this method with the code editor.
            /// </summary>
            private void InitializeComponent()
            {
    
                this.textBox1 = new TextBox();
                this.textBox1.Location = new System.Drawing.Point(10, 10);
                this.textBox1.Name = "textBox1";
                this.textBox1.Size = new System.Drawing.Size(100, 21);
                this.textBox1.TabIndex = 0;
    
                this.components = new System.ComponentModel.Container();
                this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
                this.ClientSize = new System.Drawing.Size(800, 450);
                this.Text = "Form1";
                this.Controls.Add(this.textBox1);
            }
    
            #endregion
        }
    }
    

    ? 当然,可能有一部分基础不是很好的朋友对手撸控件很愁得慌~ 这也完全没关系。告诉大家一个取巧的办法。大家可以建立一个.NET Framework的WinFrom项目。然后通过设计模式拖一个你想要的控件,设置好属性后,去Designer文件中将该控件复制到.NET Core 3.1 你相应的Designer文件下就可以啦~

运行测试

? 都已经弄好了,还等什么呢~ F5运行起来吧~ 效果图如下。

技术图片

后记

? 莫名的兴奋。其实我也不知道为啥兴奋。因为目前dotnet corewinfrom还是没有办法投入到生产环境,自身的BUG、第三方控件库的适配等等问题。但是问题并不能阻挡我们继续追求更快更省更优的开发之路。希望能在Visual Studio 2019 正式版本16.5.0上能够使用完整的WinFrom的功能吧~ 求求了~~

【突发】【WinForm】Visual Studio 2019 16.4.6 更新之后的意外之喜

标签:打开   false   第三方   ace   工程   blog   location   代码   一个   

原文地址:https://www.cnblogs.com/caydel/p/12482858.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!