1、開啟visual studio 2005,新建乙個「windows應用程式」的專案。
2、在form1設計器中,新增兩個label控制項和三個button控制項,並進行合理布局。
using system.runtime.interopservices;
4、修改建構函式**,使其變成如下的樣子:
public form1()
5、在建構函式下面新增如下的**:
public enum dmdo
[structlayout(layoutkind.sequential, charset = charset.auto)]
struct devmode
[dllimport("user32.dll", charset = charset.auto)]
static extern int changedisplaysettings([in] ref devmode lpdevmode, int dwflags);
6、在form1.cs設計裡,雙擊button1控制項,在其方法中寫入**,使其變成如下的樣子:
private void button1_click(object sender, eventargs e)
7、在form1.cs設計裡,雙擊button2控制項,在其方法中寫入**,使其變成如下的樣子:
private void button2_click(object sender, eventargs e)
8、在form1.cs設計裡,雙擊button3控制項,在其方法中寫入**,使其變成如下的樣子:
private void button3_click(object sender, eventargs e)
9、大功告成,按ctrl+f5就ok了。
附:form1.cs的全文**如下:
using system;
using system.collections.generic;
using system.componentmodel;
using system.data;
using system.drawing;
using system.text;
using system.windows.forms;
using system.runtime.interopservices;
public enum dmdo
[structlayout(layoutkind.sequential, charset = charset.auto)]
struct devmode
[dllimport("user32.dll", charset = charset.auto)]
static extern int changedisplaysettings([in] ref devmode lpdevmode, int dwflags);
private void button1_click(object sender, eventargs e)
private void button2_click(object sender, eventargs e)
private void button3_click(object sender, eventargs e) }
}
CSDN markdown編輯器編輯例項
public class hbasecurd 在hbase中新增people表並建立兩個列簇 info data 並設定建立的版本為3 也就是最新版本 throws ioexception test public void testcreatetable throws ioexception 插入資...
C 用法總結 1
1 判斷文字框中輸入的ip位址是否合法 regex reg new regex n 1 9 0 9 1 0 9 2 0 4 0 9 5 0 5 1 9 0 9 1 0 9 2 0 4 0 9 5 0 5 if reg.ismatch tb ip.text lb ip.items.add tb ip....
C語言總結 1
1.識別符號 識別符號由字母數字構成,必須由字母開頭 下劃線 算作字母,但不要用下劃線作為識別符號的首字母,因為庫中通常用下劃線作為識別符號首字母,你如果這樣用容易引起衝突 識別符號是區分大小寫的,int a和int a代表不同的變數 關鍵字不能用作識別符號 c語言區分內部名和外部名,內部名僅出現於...