從0自學C#05--表單之間的相互訪問

來源:互聯網
上載者:User
在父表單上,改變CheckBox控制項的狀態,實現子表單的開啟和關閉。在子表單上,點擊關閉按鈕後,父表單CheckBox控制項變為未選中狀態。

1.方法

這裡用委託事件的方法,實現表單的相互訪問。

2.父表單(主表單)

父表單上放置5個CheckBox控制項。並將他們賦值到CheckBox[]數組,以便代碼進行迴圈調用。

CheckBox[] checkBox;public MainFormBERT()        {            InitializeComponent();                        checkBox = new CheckBox[5];            checkBox[0] = this.checkBox1;            checkBox[1] = this.checkBox2;            checkBox[2] = this.checkBox3;            checkBox[3] = this.checkBox4;                        checkBox[4] = this.checkBox5;                    }

給CheckBox控制項添加事件。並定義OpenOrCloseSubFormPPG(int i)方法實現開啟或關閉子表單。該方法調用了子表單的事件,以相應RecvInfo(int number)方法,設定CheckBox控制項為未選中狀態:

subFormPPGTx[i].SendToParent += new SubFormPPG.SendFun(RecvInfo);
private void checkBox1_CheckedChanged(object sender, EventArgs e)        {            OpenOrCloseSubFormPPG(0);        }private void checkBox2_CheckedChanged(object sender, EventArgs e)        {            OpenOrCloseSubFormPPG(1);        }private void checkBox3_CheckedChanged(object sender, EventArgs e)        {            OpenOrCloseSubFormPPG(2);        }private void checkBox4_CheckedChanged(object sender, EventArgs e)        {            OpenOrCloseSubFormPPG(3);        }private void checkBox5_CheckedChanged(object sender, EventArgs e)        {            OpenOrCloseSubFormPPG(4);        }SubFormPPG[] subFormPPGTx = { null, null, null, null, null};private void OpenOrCloseSubFormPPG(int i)        {                        try            {                if (checkBox[i].Checked)                {                    string formTitle, formName;                    if (i < 0 || i > 4)                    {                        throw new IndexOutOfRangeException("Channel is out of range");                    }                    else if (i == 4)                    {                        formTitle = "ParallelWrite";                        formName = "subFormPPG" + formTitle;                    }                    else                    {                        formTitle = "Tx" + i;                        formName = "subFormPPG" + formTitle;                    }                    if (subFormPPGTx[i] == null || subFormPPGTx[i].IsDisposed)                    {                        subFormPPGTx[i] = new SubFormPPG();                        subFormPPGTx[i].Text = formTitle;                        subFormPPGTx[i].Name = formName;                        subFormPPGTx[i].Tag = i;                        subFormPPGTx[i].SendToParent += new SubFormPPG.SendFun(RecvInfo);//調用子表單的事件                        subFormPPGTx[i].Show(this);                    }                    else                    {                        subFormPPGTx[i].WindowState = FormWindowState.Normal;                        subFormPPGTx[i].Activate();                    }                }                else                {                    //subFormPPGTx[0].Close();                    subFormPPGTx[i].Dispose();                    subFormPPGTx[i] = null;                }            }            catch (IndexOutOfRangeException ex)            {                MessageBox.Show(ex.Message);            }            catch (Exception ex)            {                MessageBox.Show(ex.Message);            }        }private void RecvInfo(int number)        {            this.checkBox[number].Checked = false;        }

3.子表單

添加事件SendToParent,當子表單關閉時,響應事件,將資訊傳遞給父表單。

public delegate void SendFun(int number);public event SendFun SendToParent;private void SubFormPPG_FormClosed(object sender, FormClosedEventArgs e)        {            if (SendToParent != null)            {                SendToParent((int)this.Tag);            }                     }

以上就是 從0自學C#05--表單之間的相互訪問的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.