乙個小C 窗體程式

2022-01-31 13:51:34 字數 546 閱讀 8805

這程式摘自《head first in c#》一書,由東南大學出版社影印。

此程式的關鍵點的很多

2.while(visible)    //為了使程式在未關閉前,背景色一直漸變

3.system.threading.thread.sleep(10)  //程式在10秒後掛起

具體程式**如下

此窗體只有乙個button控制項,使用button的click()事件來觸發函式的執行**如下和解釋都在下面的源**中,只copy出click()事件中的**:

button_click()

1

private

void

button1_click(

object

sender, eventargs e)216

for(

intc

=254

&&visible ; c

>=

0; c

--)

//返回初始的顏色

1722}23

}

c 第乙個小程式

include using namespace std int main const int size 50 定義大小。char name size cout please input you name n 提示 cin name 輸入 cout hello world int main char ...

C 乙個窗體呼叫另乙個窗體的方法

乙個窗體呼叫另乙個窗體的方法 例如 窗體b要呼叫窗體a中的方法 1 首先在窗體a中將窗體a設為靜態窗體 public static forma m forma 設此窗體為靜態,其他窗體可呼叫此窗體中的方法 2 然後在此窗體a的建構函式中加入 m forma this public forma ini...

用C 手動寫乙個Windows窗體程式

首先,新建乙個空專案testform。然後在解決方案欄點testform解決方案,增加乙個c 類,類名叫testform.寫如下的 using system using system.drawing using system.windows.forms namespace testform publ...