zoukankan      html  css  js  c++  java
  • c#窗体传志

    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 WindowsFormsApplication1
    {
        public delegate void ces(string a);
        public partial class Form2 : Form
        {
            ces bbb;
            public Form2(ces aax)
            {
                bbb = aax;
                InitializeComponent();
            }
    
            private void button1_Click(object sender, EventArgs e)
            {
                bbb(this.textBox1.Text);
            }
        }
    }
    

      

    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 WindowsFormsApplication1
    {
        public partial class Form1 : Form
        {
            private string text;
    
            
            public Form1()
            {
                InitializeComponent();
                
            }
    
            public Form1(string text)
            {
                // TODO: Complete member initialization
                this.text = text;
            }
    
            private void button1_Click(object sender, EventArgs e)
            {
                Form2 f = new Form2(setmsg);
                f.ShowDialog();
                
            }
    
            private void Form1_Load(object sender, EventArgs e)
            {
    
            }
            public void setmsg(string msg) 
            {
                this.label1.Text = msg;
            }
        }
    }
    

      

  • 相关阅读:
    linux 获取外网ip地址
    出现大量rcuob进程
    禁用 ipv6
    centos yum 坏掉 db 损坏
    关于 solusvm
    VMWare 下 Ubuntu 18.04 的文件共享
    安装最新版本 nginx
    大量的Close_wait 发现的 too many open file 错
    Linux安装Desktop 和 vncserver
    MySQL in和limit不能连用的问题
  • 原文地址:https://www.cnblogs.com/mengluo/p/5522708.html
Copyright © 2011-2022 走看看