博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
不同窗体间传值
阅读量:5957 次
发布时间:2019-06-19

本文共 1582 字,大约阅读时间需要 5 分钟。

一:运行前后截图,实现功能将子窗体的lable的text值取出来给父窗体的lable的text

二:全部代码

a,父窗体

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace passV{    public partial class Form1 : Form    {        public Form1()        {            InitializeComponent();        }        ///         /// 将子窗体的lable的text值取出来给父窗体的lable的text        ///         ///         private void getLableTxt(string text)        {            this.label1.Text = text;        }        ///         /// 打开子窗体        ///         ///         ///         private void button2_Click(object sender, EventArgs e)        {            son son = new son();            if (DialogResult.OK == son.ShowDialog())            {                getLableTxt(son.Text);            }        }    }}

b,子窗体

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace passV{    public partial class son : Form    {        private string text;        public string Text        {            get { return text; }            set { text = value; }        }                public son()        {            InitializeComponent();        }        ///         /// 确定        ///         ///         ///         private void button1_Click(object sender, EventArgs e)        {            Text = label1.Text;            this.DialogResult = DialogResult.OK;            this.Close();        }    }}

三:注意事项,属性和字段的用法,后面调用的是属性

 

转载地址:http://bbexx.baihongyu.com/

你可能感兴趣的文章
数据结构 --- 线性表学习(php模拟)
查看>>
URAL 1081 Binary Lexicographic Sequence
查看>>
Codeforces 797B - Odd sum
查看>>
文章页调用栏目链接和栏目名称的方法
查看>>
Oracle数据库日期格式转换操作
查看>>
Play framework 2.0 -应用程序全局设置(转)
查看>>
如何将div高度填满剩余高度
查看>>
连通图
查看>>
Source insight 添加注释插件
查看>>
centos7下创建mysql5.6多实例
查看>>
go语言net包rpc远程调用的使用
查看>>
redis缓存雪崩,缓存穿透,缓存击穿的解决方法
查看>>
小程序切换账户拉取仓库文件的appid提示
查看>>
润乾报表
查看>>
SQLServer 语句相关
查看>>
Matlab for循环subplot画图加标题
查看>>
音乐播放器
查看>>
CodeForces 722C Destroying Array
查看>>
HTML 图片加载问题
查看>>
HTML
查看>>