zoukankan
html css js c++ java
WinForm 参数传递(转载)
父窗体给子窗体传参
子窗体代码:
//
添加构造函数
public
Form2(
string
param)
{
InitializeComponent();
textBox1.Text
=
param;
}
父窗体代码:
private
void
button2_Click(
object
sender, EventArgs e)
{
Form2 f
=
new
Form2(textBox1.Text);
f.StartPosition
=
FormStartPosition.CenterParent;
f.ShowDialog();
}
子窗体给父窗体传参
子窗体代码:
//
添加属性
public
string
Parameter1
{
get
{
return
textBox1.Text; }
}
private
void
button1_Click(
object
sender, EventArgs e)
{
this
.DialogResult
=
DialogResult.OK;
this
.Close();
}
父窗体代码:
private
void
button1_Click(
object
sender, EventArgs e)
{
Form2 f
=
new
Form2();
//
Form2为子窗体名称
f.StartPosition
=
FormStartPosition.CenterParent;
if
(f.ShowDialog(
this
)
==
DialogResult.OK)
{
button1.Text
=
f.Parameter1;
}
}
http://u.huoban001.com/space.php
查看全文
相关阅读:
Java程序运行机制及开发环境
Redis源码分析(八)--- t_hash哈希转换
Redis源码分析(八)--- t_hash哈希转换
Redis源码分析(八)--- t_hash哈希转换
Redis源码分析(九)--- t_list,t_string的分析
Redis源码分析(九)--- t_list,t_string的分析
Redis源码分析(九)--- t_list,t_string的分析
Redis源码分析(十)--- testhelp.h小型测试框架和redis-check-aof.c日志检测
Redis源码分析(十)--- testhelp.h小型测试框架和redis-check-aof.c日志检测
Redis源码分析(十)--- testhelp.h小型测试框架和redis-check-aof.c日志检测
原文地址:https://www.cnblogs.com/zpq521/p/1240219.html
最新文章
[LeetCode] 139. Word Break
[RFC] Simplifying kernel configuration for distro issues
投票系统 & js脚本简单刷票
「人生幸福的三要素」写出我心(一百二十八)
「我们最自不量力的」写出我心(一百二十七)
「人生就一次逆袭的机会」写出我心(一百二十六)
「赢得尊重」写出我心(一百二十五)
「成为一个值得他人交往的人」写出我心(一百二十四)
「适合自己就好」写出我心(一百二十三)
「祸不单行的原因」写出我心(一百二十二)
热门文章
「为了自己」写出我心(一百二十一)
MongoDB分组查询
「如何看到事物的本质」 写出我心(一百二十)
老虎集团 2020.08.30 web前端笔试
OPPO 2020.08.29 前端笔试
前端-点击stop()后删除录制图标
Java text文本转json文件
IDEA 调用外部包
Java 计算相对路径
python模块安装查看、包制作
Copyright © 2011-2022 走看看