1樓:乁
把form2的button按鈕的modifiers屬性改成public
然後在form1裡的button按鈕裡
form2 f2 = new form2();
f2.show();
f2.button1.enable = true;
2樓:魚孖醬
using system;
using system.collections.generic;
using system.componentmodel;
using system.data;
using system.drawing;
using system.text;
using system.windows.forms;
using system.collections;
namespace ttt1
private void form1_load(object sender, eventargs e)
private void button1_click(object sender, eventargs e)
private void button2_click(object sender, eventargs e)}}
**********************using system;
using system.collections.generic;
using system.componentmodel;
using system.data;
using system.drawing;
using system.text;
using system.windows.forms;
namespace ttt1}}
*****************************3個button 都設public
C各個窗體之間如何傳值啊,C 各個窗體之間如何傳值啊!
1.利用建構函式傳參 比如想把一個窗體的例項傳到另一個窗體中,就可以form2 frm1 new form2 this 注意 這裡的this代表當前窗體例項,且form2的建構函式需要接收一個form型別的引數 2.利用屬性或有返回值的方法傳參 窗體1開放一些相應的屬性或方法 窗體2用窗體1的例項進...
C 怎麼2個窗體傳值問題,C 窗體傳值
private void button2 click object sender,eventargs e public partial class form2 formprivate string nameone public string nameonesetprivate string name...
C怎樣繪製半透明窗體,只讓窗體背景半透明,而窗體裡面的控制元件不透明
要上面的效果的話,加上圖上那兩行跟著註釋的 就行了 窗體屬性opacity就是窗體透明度 你這種方式問題太多,如果我放一張 中顏色和透明背景色相同,則也會透明 怎麼設定winform背景半透明但控制元件不透明 要實現c winform中的控制元件與背景的透明,可以通過設定控制元件的backcolor...