• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

c#winform窗体间的传值

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

说明:本文讲解两个窗体之间的传值,主要用到两个窗体,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一样这里不做赘述

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
win1064位,家庭版,C++,ini配置说明发布时间:2022-07-18
下一篇:
C#的dapper使用发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap