C#Winform窗体的基本显示操作

Posted 老虎中的小白Gentle

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#Winform窗体的基本显示操作相关的知识,希望对你有一定的参考价值。

模态与非模态窗体

模态运行窗体就是,打开窗体,这个窗体不关闭的话,是操作不了其他窗体,非模态就是可以随意操作任意窗体。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace MyFrom
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Form2 form2 = new Form2();
            form2.Show();//非模态显示窗体
            // form2.ShowDialog();//模态显示窗体
           // form2.Activate();//激活窗体
        }

        private void button2_Click(object sender, EventArgs e)
        {
          //  this.Close();//关闭窗体
            this.Hide(); //隐藏窗体
        }
    }
}

以上是关于C#Winform窗体的基本显示操作的主要内容,如果未能解决你的问题,请参考以下文章

在C#winform窗体中,放入一控件axAcroPDF1,

C#Winform如何实现日志信息实时显示到窗体

急急急! c# winform开发模式窗体的一个问题

如何修改C#winform程序图标

我想用winForm窗体,实现对文本文件进行操作。

C# winform 跨线程操作winform程序窗体