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

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

说明:本文讲解两个窗体之间的传值,主要用到两个窗体,form1,form2

1、在form1窗体单击按钮,打开窗体form2,然后把form2中文本框的值传递给form1

form1中的代码:

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 FormToform
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        //获取值
        private void button1_Click(object sender, EventArgs e)
        {
            Form2 fr = new Form2();
            DialogResult rsult = fr.ShowDialog();
            if(rsult==DialogResult.OK)
            {
                //获取窗体2传回来的值
                listBox1.Items.Add(fr.UKind);
                listBox1.Items.Add(fr.UName);
            }
        }
    }
}
窗体form2的代码:

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 FormToform
{
    public partial class Form2 : Form
    {
        public Form2()
        {
            InitializeComponent();
        }
        //给窗体定义两个属性
     
        public string UKind {
            get { return textBox1.Text; }
            set { textBox1.Text= value; }
        }   
        public string UName
        {
            get { return textBox2.Text; }
            set { textBox2.Text = value; }
        }
        private void button1_Click(object sender, EventArgs e)
        {
            DialogResult = DialogResult.OK;
        }
    }
}
2、在form1窗体单击按钮,打开窗体form2,然后给form2中文本框赋值

form1中按钮的代码如下:

  private void button2_Click(object sender, EventArgs e)

        {
            Form2 fr = new Form2();
            fr.UName = "姓名";
            fr.UKind = "类别";
            DialogResult rsult = fr.ShowDialog();
           
        }

 

form2与标题1一样这里不做赘述

 

转载于:https://www.cnblogs.com/net064/p/8177035.html

你可能感兴趣的文章
Python 装饰器
查看>>
c# 文件笔记
查看>>
Vue 自定义指令
查看>>
帆软 控件内容 清除
查看>>
第一页 - 工具的使用(webstorm)
查看>>
.net static 变量
查看>>
The Number of set-hdu-3006
查看>>
自定义分页控件,修改自AspNetForums.Controls.Pager
查看>>
ssh 免签登录 亲测可以
查看>>
Linux 进程资源用量监控和按用户设置进程限制
查看>>
IE浏览器整页截屏程序(二)
查看>>
D3.js 之 d3-shap 简介(转)
查看>>
制作满天星空
查看>>
MyBatis日记(三):戏说MyBatis配置文件
查看>>
$_POST和$GLOBALS['HTTP_RAW_POST_DATA'] 的区别
查看>>
类和结构
查看>>
遍历文件夹下所有dll的类
查看>>
CSS3选择器(二)之属性选择器
查看>>
关于浏览器行为和服务器行为下的重定向和转发再次理解
查看>>
c语言枚举型常量
查看>>