• WinForm窗体间传值


    Form1——主窗体:

    namespace FirstDlg
    {
        public partial class Form1 : Form
        {
            private Form2 f;
            public Form1()
            {
                InitializeComponent();
            }
            public string TextStored
            {
                get { return tbTest.Text; }
                set { tbTest.Text = value; }
            }
            private void button1_Click(object sender, EventArgs e)
            {
                tbTest.Text = f.TextStored;//属性传值
            }

            private void Form1_Load(object sender, EventArgs e)
            {
                f = new Form2();
                f.Show();
            }
        }
    }

    Form2——对话框窗体:

    namespace FirstDlg
    {
        public partial class Form2 : Form
        {
            public Form2()
            {
                InitializeComponent();
            }
            public string TextStored
            {
                get { return tbTest.Text; }
                set { tbTest.Text = value; }
            }
            private void btnOK_Click(object sender, EventArgs e)
            {
                this.DialogResult = DialogResult.OK;
                this.Close();
            }

            private void btnCancel_Click(object sender, EventArgs e)
            {
                this.DialogResult = DialogResult.Cancel;
                this.Close();
            }

            private void button1_Click(object sender, EventArgs e)
            {
                foreach (Form form in Application.OpenForms)//搜索窗体名称
                {
                    if (form.Name == "Form1")
                    {
                        Form1 f = (Form1)form;
                        tbTest.Text = f.TextStored;
                    }
                }
            }
        }
    }

  • 相关阅读:
    String分割成int[]和List<Integer>
    linux查询正在运行的jar包并kill进程
    linux自动清理n天(1个月)前日志文件
    zookeeper命令行操作
    sql开窗函数
    hdfs shell操作
    centos7安装mysql8
    hadoop集群安装
    hdfs基本介绍
    IDEA下运行MAVEN项目,报"程序包******不存在"
  • 原文地址:https://www.cnblogs.com/pyt5208/p/1336811.html
Copyright © 2020-2023  润新知