程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> C#中窗體不能改變大小實現

C#中窗體不能改變大小實現

編輯:關於.NET
有一個關於窗體邊界的屬性(FromBorderStyle)。這個屬性的默認值是Sizable。還有另外六個值,分別為None、FixedSingle、Fixed3D、FixedDialog、FixedToolWindow、SizableToolWindow。None就是無邊界,然後窗體右上角也沒有最小化、最大化、關閉的按鍵,一般用於顯示ICON或者一般的聯系方式。Fixed的意識差不多就是固定的意思。然後Single就是窗體框架只是一條線,等等。你可以自己試一下效果。一般,我在做WINFROM程序的時候都喜歡模仿Microsoft。呵呵,雖然沒有什麼創新,但是微軟做得挺人性化的。值得我們去研究和體會。
所以,你要做出固定大小的窗體那就試試Fixed...的那幾個屬性,選擇自己滿意的吧。



默認值:Sizable。

可供設置的FormBorderStyle 如下表:

Value Description
None The form has no border.

FixedSingle The form has a non-resizable single line border.

Fixed3D The form has a non-resizable 3d border.

FixedDialog The form has a thick, non-resizable, dialog style border that has no minimize or maximize boxes.

Sizable The default. The form has a resizable border.

FixedToolWindow The form has a non-resizable border that has only a close button. This style is used for tool windows.

SizableToolWindow Same as FixedToolWindow but resizable.
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved