2個窗體之間的通訊

2021-04-20 09:46:17 字數 465 閱讀 7811

在乙個form裡改變textbox時  另外乙個form裡textbox的值 也隨之變化

form1: 包含個textbox1

public event eventhandler textchangevalue

addremove

form2:包含乙個textbox2 和button1

public void textchange(object sender,eventargs e)

textbox tbox = sender as textbox;

textbox2.text = tbox.text;

private void button1_click(object sender,eventargs e)

form1 form = new form1();

form.textchangevalue += new eventhandler(textchange);

利用委託的方法實現2個窗體之間的通訊的乙個小練習

傳送端窗體 using system.collections.generic using system.componentmodel using system.data using system.drawing using system.linq using system.text using sy...

兩個窗體之間的checkbox傳遞

例如有乙個窗體a 和乙個窗體b a上有乙個checkbox b 上也有乙個checkbox 執行a窗體勾選chk後調整b窗體 然後b窗體上的checkbox也被勾選上 在a窗體load事件中迴圈遍歷窗體上的checkbox 新增到list集合 a窗體listlist new list private...

Windows Form父子兩個窗體之間的傳值測試

1 先看測試的效果圖 2 全部的 1 using system 2using system.windows.forms 34 namespace windowsforms513 public actiondoinvokep 14private void parentform load object ...