代码改变世界

winform+c#之窗体之间的传值

  Virus-BeautyCode  阅读(10757)  评论(4编辑  收藏  举报
窗体传值可以分为两类。
1、主窗体往子窗体传值
有两种方法,一种是在子窗体提供重载构造函数,利用重载构造函数传递值,适用于传值数量比较少;第二种是,在子窗体中定义一个主窗体对象,然后就可以接收到主窗体的属性值了,适用于传值数量大。
主窗体代码如下:
 public partial class frmParent : Form
    
{
        
private string strValueA = "";
        
public string StrValueA
        
{
            
get
            
{
                
return this.strValueA;
            }

            
set this.strValueA = value; }
        }

        
public frmParent()
        
{
            InitializeComponent();
        }


        
private void button1_Click(object sender, EventArgs e)
        
{
            
this.strValueA = textBox1.Text;
            frmChild frmchild 
= new frmChild();
            frmchild.Owner 
= this;
            frmchild.ShowDialog();
            frmchild.Dispose();
        }


        
private void button2_Click(object sender, EventArgs e)
        
{
            frmChild frmchild 
= new frmChild(this.textBox1.Text);
            
string returnValue = "";
            
if (frmchild.ShowDialog() == DialogResult.OK)
            
{
                returnValue 
= frmchild.Str;
                
this.textBox1.Text = returnValue;
            }

        }

    }
子窗体代码如下:
public partial class frmChild : Form
    
{
        
private string str;
        
public string Str
        
{
            
get return this.str; }
            
set this.str = value; }
        }

        
private frmParent frmparent;

        
public frmChild()
        
{
            InitializeComponent();
        }

        
public frmChild(string str)
        
{
            
this.str = str;
            InitializeComponent();
            
this.textBox1.Text = str;
        }

        
private void frmChild_Load(object sender, EventArgs e)
        
{
            frmparent 
= (frmParent)this.Owner;
            
//this.textBox1.Text = frmparent.StrValueA;
        }


        
private void button1_Click(object sender, EventArgs e)
        
{
            
//frmparent = (frmParent)this.Owner;
            this.Str = this.textBox1.Text;
            
this.DialogResult = DialogResult.OK;
            
this.Close();
            
        }

    }
2、从子窗体返回值到主窗体中
利用了子窗体的属性保存子窗体的值,在主窗体中可以访问到子窗体的属性
主窗体代码如下:
 public partial class frmParent : Form
    
{
        
private string strValueA = "";
        
public string StrValueA
        
{
            
get
            
{
                
return this.strValueA;
            }

            
set this.strValueA = value; }
        }

        
public frmParent()
        
{
            InitializeComponent();
        }

        
private void button2_Click(object sender, EventArgs e)
        
{
            frmChild frmchild 
= new frmChild(this.textBox1.Text);
            
string returnValue = "";
            
if (frmchild.ShowDialog() == DialogResult.OK)
            
{
                returnValue 
= frmchild.Str;
                
this.textBox1.Text = returnValue;
            }

        }

    }
子窗体代码如下:
public partial class frmChild : Form
    
{
        
private string str;
        
public string Str
        
{
            
get return this.str; }
            
set this.str = value; }
        }

        
private frmParent frmparent;

        
public frmChild()
        
{
            InitializeComponent();
        }

 
        private void frmChild_Load(object sender, EventArgs e)
        
{
            frmparent 
= (frmParent)this.Owner;
            
//this.textBox1.Text = frmparent.StrValueA;
        }


        
private void button1_Click(object sender, EventArgs e)
        
{
            
//frmparent = (frmParent)this.Owner;
            this.Str = this.textBox1.Text;
            
this.DialogResult = DialogResult.OK;
            
this.Close();
            
        }

    }

编辑推荐:
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
阅读排行:
· winform 绘制太阳,地球,月球 运作规律
· AI与.NET技术实操系列(五):向量存储与相似性搜索在 .NET 中的实现
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
点击右上角即可分享
微信分享提示