zoukankan      html  css  js  c++  java
  • winform用户控件

    用途用户控件包含Time控件和一个lable控件,一个ToolStrip控件,每隔一秒显示一次时间

    1. 生成用户控件

    新建一个项目类型为用户控件

    image

    注意定义类名,此类名为以后工具箱中显示的名字,暂且定义此处类名为LabelTime. 文件名称为UserControl1.cs(无关紧要,vs引用dll的时候,都是关注类名非文件名)

    namespace myWindowsFormsControlLibrary1
    
    {
    
        public partial class labelTime : UserControl
    
        {
    
            public labelTime()
    
            {
    
                InitializeComponent();
    
                timer1.Enabled = true;
    
                timer1.Interval = 1000;
    
            }
    
            private void timer1_Tick(object sender, EventArgs e)
    
            {
    
                this.toolStripLabel1.Text = "本地时间: " + DateTime.Now.ToString();
    
                //this.toolStripLabel2.Text = "服务器时间:" ;
    
            }
    
            private void UserControl1_Load(object sender, EventArgs e)
    
            {
    
            }
    
            private void toolStripLabel1_Click(object sender, EventArgs e)
    
            {
    
            }
    
        }
    
    }

    右击生成项目,然后在Bin文件夹就会出现以下文件  myWindowsFormControlLibrary.dll,此dll文件以后就是winform项目要引用的控件。

    image

    2.添加用户控件到工具栏中

    VS菜单--->工具---->选择工具箱项

    image

    点击浏览,选择刚才的dll路径,以后工具箱就会出现此控件了。

    3.项目中使用控件

    测试,新建项目winform类型的,然后点开工具箱会发现如下图    myWindowsFormsControlLibrary1是刚才项目的命名控件,labelTime是类的name

    然后接着托动就可以使用了

    image

  • 相关阅读:
    Redux
    版本控制(.git + .svn + SourceTree)
    前端埋点
    前端IDE:VSCode + WebStorm
    浏览器
    Mutation Observer
    函数节流与函数去抖
    React 初识
    Ajax
    JS
  • 原文地址:https://www.cnblogs.com/StudyLife/p/3824522.html
Copyright © 2011-2022 走看看