zoukankan      html  css  js  c++  java
  • 父窗口调用子窗口,关闭子窗口将内容返回给父窗口

     父窗口调用子窗口,关闭子窗口将内容返回给父窗口
     //父窗口调子窗口函数  
    private void ShowLinkDBDialog(object sender, EventArgs e)
      {  
      //连接子对话框。
      fchild obj = new fchild(this);//this父窗口
      obj.WindowState = FormWindowState.Normal;
      obj.ShowDialog();
      this.TextBox1.Text = obj.RetValue;
      }
    子窗口相关内容
    private Form _parentForm=null;
      private static string _RetValue = null;
      public string RetValue
      {
      get { return _RetValue; }
      }
      //  
      public fVistSQLServer(Form parentForm)//带参数的构造函数
      {
      InitializeComponent();
      this._parentForm = parentForm;
      }
    //点确定按钮,返回信息到父窗口,并关闭子窗口.
    private void confirm_Click(object sender, EventArgs e)
      {
      _RetValue = this.TextBox1.Text.Trim();
       //((fparent)_parentForm).TextBox2.Text="123";

      //关闭窗口
      this.Close();  
      }  

  • 相关阅读:
    TP5.0防跳墙访问
    TP5.0上传添加数据库
    抽象类与接口
    instanceof 关键字
    abstract 抽象类
    extends 继承
    单例模式
    类的加载过程和对象的创建
    静态成员变量和非静态成员变量的区别
    this关键字
  • 原文地址:https://www.cnblogs.com/moss_tan_jun/p/2079054.html
Copyright © 2011-2022 走看看