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

简介: 窗体传值可以分为两类。1、主窗体往子窗体传值有两种方法,一种是在子窗体提供重载构造函数,利用重载构造函数传递值,适用于传值数量比较少;第二种是,在子窗体中定义一个主窗体对象,然后就可以接收到主窗体的属性值了,适用于传值数量大。

窗体传值可以分为两类。
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();
            
        }

    }
目录
相关文章
|
6月前
|
Java 数据库 C#
C#winforms实现windows窗体人脸识别
C#winforms实现windows窗体人脸识别
|
关系型数据库 MySQL C#
C# winform 一个窗体需要调用自定义用户控件的控件名称
给用户控件ucQRCode增加属性: //二维码图片 private PictureBox _pictureBoxFSHLQrCode; public PictureBox PictureBoxFSHLQrCode {   get { return _pictureBoxFSHLQrCode; }   set { this.pictureBoxFSHLQrCode = value; } } 在Form1窗体直接调用即可: ucQRCode uQRCode=new ucQRCode(); ucQRCode.PictureBoxFSHLQrCode.属性= 要复制或传给用户控件上的控件的值
70 0
|
1月前
|
API C# Windows
【C#】在winform中如何实现嵌入第三方软件窗体
【C#】在winform中如何实现嵌入第三方软件窗体
62 0
|
4月前
|
开发框架 数据可视化 C#
|
6月前
|
C#
C#如何实现窗体最小化到托盘
C#如何实现窗体最小化到托盘
66 0
|
6月前
|
JavaScript Linux C#
【傻瓜级JS-DLL-WINCC-PLC交互】1.C#用windows窗体控件创建.net控件
【傻瓜级JS-DLL-WINCC-PLC交互】1.C#用windows窗体控件创建.net控件
140 0
|
6月前
|
C# Windows
C#安装“Windows 窗体应用(.NET Framework)”
C#安装“Windows 窗体应用(.NET Framework)”
164 0
|
11月前
|
C# 数据安全/隐私保护
C# 窗体之间参数互相传递的两种方法与使用
C# 窗体之间参数互相传递的两种方法与使用
|
11月前
|
C# Kotlin
C#is、as关键字及获取当前活动窗体的实例
这篇日志记录一下C#中is关键字及as关键字的用法。 Is :判断检查对象是否与给定类型兼容 As :将对象转换为指定类型(强转),就跟(int )这样的用法是一样的。 获取当前窗体的活动子窗体。
56 0
|
C# 数据安全/隐私保护
ApeForms | C# WinForm窗体控件平滑减速运动
在桌面软件开发中,有时会需要控制窗体或控件移动以实现某些界面效果,比如幻灯片换页、侧面的展开栏等。 通常情况下我们会使用Timer以每隔一段时间修改一下坐标位置的方式来实现目标对象的位移效果,但通过这个方式实现的动效存在几个问题: 匀速运动效果生硬; 运动过程中不便灵活改变运动状态(如侧栏展开一半时令其收起); 动效多时需要创建多个Timer对象,不易管理且占用资源; ApeForms中为控件和窗体提供了平滑运动的扩展方法,很好的解决了这些问题。不仅是坐标的平滑运动,还有控件\窗体尺寸的平滑变化、透明度的平滑变化。允许在变化的中途随时更改目标坐标\尺寸\透明度,且使用共享的Timer
11381 1
ApeForms | C# WinForm窗体控件平滑减速运动