設定方法:
一:form物件
屬性:設計中的name:窗體類的類名
acceptbutton:視窗的確定按鈕
cancelbutton:視窗按esc的取消按鈕
1.外觀
backcolor:背景顏色
forecolor:字型顏色
backgroundimage:背景
font:設定字型
formborderstyle:邊框樣式,常用fixedsingle固定,sizeable可調
text:標題欄文字
2.視窗樣式
controlbox:窗體左上角或右上角的最大最小關閉按鈕
maximizebox:控制最大化按鈕是否可用
minimizebox:控制最小化按鈕是否可用
opacity:透明度
icon:設定窗體左上角的圖示,只能是ico檔案
showicon:是否顯示左上角圖示
showintaskbar:是否在windows工作列裡顯示窗體
topmost:最頂層視窗,始終在最上面
transparencykey:要透明顯示的顏色是哪個顏色,一般用來做透明窗體
3.布局
windowstate:執行的狀態,執行起來最大最小化
starposition:視窗執行的位置,居中之類的
size:視窗大小
maximumsize:最大化的最大值
minimumsize:最小化的最大值
autosize:當有超出時是否自動調整視窗
autoscroll:超出有滾動條
二:工具
1.label標籤:
text:標籤上的文字
anchor:勾住上右下左,控制定位
textalign:文字居中,前提是autosize設為false
autosize:是否自動根據裡面文字的內容調整大小
imagealign:的對齊方式
image:標籤上要顯示的
imagelist:集,這個也是工具,需要先設定才能在這裡用
imageindex:要用集中的第幾個
2.textbox文字框
text:文字框上的文字
multiline:是否為多行顯示
acceptsreturn:是否允許輸入回車符,用來設定按回車時是觸發acceptbutton還是回車
tabindex:按tab鍵游標進入的次序
acceptindex:文字框輸入的時候,是否接受tab跳格的效果
enabled:是否可用
readonly:唯讀,游標可以進,無法改
maxlength:最多輸入多少字元
passwordchar:用來設定密碼框內密碼顯示樣式
wordwrap:是否自動換行
scrollbars:如何顯示滾動條
visible:是否可見
3.按鈕button
text:文字
flatstyle:樣式
text後面加(&c)就可以設定c鍵為熱鍵,按c的時候觸發這個按鍵。
4.radiobutton單選按鈕
c winform 窗體起始位置 設定
窗體起始位置為頂部中間,winform居中顯示 int x system.windows.forms.systeminformation.workingarea.width this.size.width 2 int y system.windows.forms.systeminformation....
c winform 窗體起始位置 設定
窗體起始位置為頂部中間,winform居中顯示 int x system.windows.forms.systeminformation.workingarea.width this.size.width 2 int y system.windows.forms.systeminformation....
C winform 設定窗體的啟動位置
只需要設定窗體的startposition屬性 registerform.startposition formstartposition.centerscreen formstartposition的全部列舉值 成員名稱 說明centerparent 窗體在其父窗體中居中。centerscreen ...