Form 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
表示構成應用程式使用者介面的視窗或對話方塊。
public ref class Form : System::Windows::Forms::ContainerControl
public class Form : System.Windows.Forms.ContainerControl
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
public class Form : System.Windows.Forms.ContainerControl
type Form = class
inherit ContainerControl
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type Form = class
inherit ContainerControl
Public Class Form
Inherits ContainerControl
- 繼承
- 衍生
- 屬性
範例
下列範例會建立 的新 實例 Form ,並呼叫 ShowDialog 方法,將窗體顯示為對話框。 此範例會將 FormBorderStyle、 AcceptButton、 CancelButton、 MinimizeBox、 MaximizeBox和 StartPosition 屬性設定為將窗體的外觀和功能變更為對話框。 此範例也會使用 Add 表單集合的 Controls 方法來加入兩 Button 個控件。 此範例會HelpButton使用 屬性,在對話框的 標題 列中顯示說明按鈕。
public:
void CreateMyForm()
{
// Create a new instance of the form.
Form^ form1 = gcnew Form;
// Create two buttons to use as the accept and cancel buttons.
Button^ button1 = gcnew Button;
Button^ button2 = gcnew Button;
// Set the text of button1 to "OK".
button1->Text = "OK";
// Set the position of the button on the form.
button1->Location = Point(10,10);
// Set the text of button2 to "Cancel".
button2->Text = "Cancel";
// Set the position of the button based on the location of button1.
button2->Location =
Point( button1->Left, button1->Height + button1->Top + 10 );
// Set the caption bar text of the form.
form1->Text = "My Dialog Box";
// Display a help button on the form.
form1->HelpButton = true;
// Define the border style of the form to a dialog box.
form1->FormBorderStyle = ::FormBorderStyle::FixedDialog;
// Set the MaximizeBox to false to remove the maximize box.
form1->MaximizeBox = false;
// Set the MinimizeBox to false to remove the minimize box.
form1->MinimizeBox = false;
// Set the accept button of the form to button1.
form1->AcceptButton = button1;
// Set the cancel button of the form to button2.
form1->CancelButton = button2;
// Set the start position of the form to the center of the screen.
form1->StartPosition = FormStartPosition::CenterScreen;
// Add button1 to the form.
form1->Controls->Add( button1 );
// Add button2 to the form.
form1->Controls->Add( button2 );
// Display the form as a modal dialog box.
form1->ShowDialog();
}
public void CreateMyForm()
{
// Create a new instance of the form.
Form form1 = new Form();
// Create two buttons to use as the accept and cancel buttons.
Button button1 = new Button ();
Button button2 = new Button ();
// Set the text of button1 to "OK".
button1.Text = "OK";
// Set the position of the button on the form.
button1.Location = new Point (10, 10);
// Set the text of button2 to "Cancel".
button2.Text = "Cancel";
// Set the position of the button based on the location of button1.
button2.Location
= new Point (button1.Left, button1.Height + button1.Top + 10);
// Set the caption bar text of the form.
form1.Text = "My Dialog Box";
// Display a help button on the form.
form1.HelpButton = true;
// Define the border style of the form to a dialog box.
form1.FormBorderStyle = FormBorderStyle.FixedDialog;
// Set the MaximizeBox to false to remove the maximize box.
form1.MaximizeBox = false;
// Set the MinimizeBox to false to remove the minimize box.
form1.MinimizeBox = false;
// Set the accept button of the form to button1.
form1.AcceptButton = button1;
// Set the cancel button of the form to button2.
form1.CancelButton = button2;
// Set the start position of the form to the center of the screen.
form1.StartPosition = FormStartPosition.CenterScreen;
// Add button1 to the form.
form1.Controls.Add(button1);
// Add button2 to the form.
form1.Controls.Add(button2);
// Display the form as a modal dialog box.
form1.ShowDialog();
}
Public Sub CreateMyForm()
' Create a new instance of the form.
Dim form1 As New Form()
' Create two buttons to use as the accept and cancel buttons.
Dim button1 As New Button()
Dim button2 As New Button()
' Set the text of button1 to "OK".
button1.Text = "OK"
' Set the position of the button on the form.
button1.Location = New Point(10, 10)
' Set the text of button2 to "Cancel".
button2.Text = "Cancel"
' Set the position of the button based on the location of button1.
button2.Location = _
New Point(button1.Left, button1.Height + button1.Top + 10)
' Set the caption bar text of the form.
form1.Text = "My Dialog Box"
' Display a help button on the form.
form1.HelpButton = True
' Define the border style of the form to a dialog box.
form1.FormBorderStyle = FormBorderStyle.FixedDialog
' Set the MaximizeBox to false to remove the maximize box.
form1.MaximizeBox = False
' Set the MinimizeBox to false to remove the minimize box.
form1.MinimizeBox = False
' Set the accept button of the form to button1.
form1.AcceptButton = button1
' Set the cancel button of the form to button2.
form1.CancelButton = button2
' Set the start position of the form to the center of the screen.
form1.StartPosition = FormStartPosition.CenterScreen
' Add button1 to the form.
form1.Controls.Add(button1)
' Add button2 to the form.
form1.Controls.Add(button2)
' Display the form as a modal dialog box.
form1.ShowDialog()
End Sub
備註
Form是應用程式中所顯示之任何視窗的表示法。 類別 Form 可用來建立標準、工具、無框線和浮動視窗。 您也可以使用 Form 類別來建立模式視窗,例如對話框。 多文檔介面 (MDI) 表單的特殊表單可以包含稱為 MDI 子表單的其他表單。 MDI 表單的建立方式是將 IsMdiContainer 屬性設定為 true
。 MDI 子表單的建立方式是將 MdiParent 屬性設定為將包含子表單的 MDI 父表單。
使用 類別中 Form 可用的屬性,您可以決定您要建立之視窗或對話框的外觀、大小、色彩和視窗管理功能。 屬性Text可讓您在標題列中指定視窗的 標題。 Size和 DesktopLocation 屬性可讓您在視窗顯示時定義視窗的大小和位置。 您可以使用 ForeColor color 屬性來變更表單上所有控制件的預設前景色彩。 FormBorderStyle、 MinimizeBox和 MaximizeBox 屬性可讓您控制表單是否可以在運行時間最小化、最大化或重設大小。
除了屬性之外,您還可以使用 類別的 方法來操作表單。 例如,您可以使用 ShowDialog 方法將表單顯示為強制回應對話方塊。 您可以使用 SetDesktopLocation 方法將表單放置在桌面上。
類別的事件 Form 可讓您響應表單上執行的動作。 您可以使用 Activated 事件來執行作業,例如在啟動表單時更新表單控制件中顯示的數據。
您可以使用表單作為應用程式中的起始類別,方法是在類別中放置稱為 Main
的方法。 在方法中 Main
,新增程式代碼以建立和顯示表單。 您也需要將 STAThread
屬性新增至 Main
方法,才能執行表單。 當啟動表單關閉時,應用程式也會關閉。
例如,如果您在可見 (之前Form將 屬性設定Enabled為 false
false,在 Microsoft Visual Studio 設計工具中將 設定Enabled為 false) ,則仍會啟用最小化、最大化、關閉和系統按鈕。 例如,如果您在 (可見之後Form將 設定Enabled為 false
,當 Load 事件發生) 時,按鈕就會停用。
建構函式
Form() |
初始化 Form 類別的新執行個體。 |
欄位
ScrollStateAutoScrolling |
判斷 AutoScroll 屬性值。 (繼承來源 ScrollableControl) |
ScrollStateFullDrag |
判斷使用者是否已啟用完整的視窗拖曳。 (繼承來源 ScrollableControl) |
ScrollStateHScrollVisible |
判斷 HScroll 屬性值是否設定為 |
ScrollStateUserHasScrolled |
判斷使用者是否已捲動 ScrollableControl 控制項。 (繼承來源 ScrollableControl) |
ScrollStateVScrollVisible |
判斷 VScroll 屬性值是否設定為 |
屬性
AcceptButton |
取得或設定使用者按下 ENTER 鍵時所按下的表單上按鈕。 |
AccessibilityObject |
取得指定給控制項的 AccessibleObject。 (繼承來源 Control) |
AccessibleDefaultActionDescription |
取得或設定協助用戶端應用程式所使用的控制項的預設動作描述。 (繼承來源 Control) |
AccessibleDescription |
取得或設定協助工具用戶端應用程式使用之控制項的描述。 (繼承來源 Control) |
AccessibleName |
取得或設定協助工具用戶端應用程式使用的控制項名稱。 (繼承來源 Control) |
AccessibleRole |
取得或設定控制項的可存取角色。 (繼承來源 Control) |
ActiveControl |
取得或設定容器控制項上的作用中控制項。 (繼承來源 ContainerControl) |
ActiveForm |
取得這個應用程式目前的現用表單。 |
ActiveMdiChild |
取得目前現用的多重文件介面 (MDI) 子視窗。 |
AllowDrop |
取得或設定值,指出控制項是否能接受使用者拖放上來的資料。 (繼承來源 Control) |
AllowTransparency |
取得或設定值,指出是否可調整表單的不透明度。 |
Anchor |
取得或設定控制項繫結至的容器邊緣,並決定控制項隨其父代重新調整大小的方式。 (繼承來源 Control) |
AutoScale |
已淘汰.
已淘汰.
取得或設定值,指出表單是否要調整大小以配合表單上所使用的字型高度,並且縮放它的控制項。 |
AutoScaleBaseSize |
取得或設定用以自動縮放表單的基底大小。 |
AutoScaleDimensions |
取得或設定設計控制項的目標維度 (Dimension)。 (繼承來源 ContainerControl) |
AutoScaleFactor |
取得目前與設計階段自動縮放維度之間的縮放比例。 (繼承來源 ContainerControl) |
AutoScaleMode |
取得或設定控制項的自動縮放模式。 (繼承來源 ContainerControl) |
AutoScroll |
取得或設定值,指出表單是否啟用自動捲動。 |
AutoScrollMargin |
取得或設定自動捲動邊界的大小。 (繼承來源 ScrollableControl) |
AutoScrollMinSize |
取得或設定自動捲動大小的最小值。 (繼承來源 ScrollableControl) |
AutoScrollOffset |
取得或設定此控制項在 ScrollControlIntoView(Control) 中要捲動到哪一個位置。 (繼承來源 Control) |
AutoScrollPosition |
取得或設定自動捲動的位置。 (繼承來源 ScrollableControl) |
AutoSize |
根據 AutoSizeMode 的設定調整表單大小。 |
AutoSize |
這個屬性與這個類別無關。 (繼承來源 Control) |
AutoSizeMode |
取得或設定表單自動調整其大小所根據的模式。 |
AutoValidate |
取得或設定值,指出這個容器中的控制項是否會在焦點改變時自動進行驗證。 |
AutoValidate |
取得或設定值,指出這個容器中的控制項是否會在焦點改變時自動進行驗證。 (繼承來源 ContainerControl) |
BackColor |
取得或設定控制項的背景色彩。 |
BackgroundImage |
取得或設定在控制項中顯示的背景影像。 (繼承來源 Control) |
BackgroundImageLayout |
取得或設定在 ImageLayout 列舉類型中所定義的背景影像配置。 (繼承來源 Control) |
BindingContext |
取得或設定控制項的 BindingContext。 (繼承來源 ContainerControl) |
Bottom |
取得控制項下邊緣和其容器工作區 (Client Area) 上邊緣之間的距離 (單位為像素)。 (繼承來源 Control) |
Bounds |
取得或設定控制項 (包括其非工作區項目) 相對於父控制項之大小和位置 (單位為像素)。 (繼承來源 Control) |
CancelButton |
取得或設定使用者按下 ESC 鍵時所按下的按鈕控制項。 |
CanEnableIme |
取得值,這個值表示 ImeMode 屬性是否可以設定為使用中的值,以啟用 IME 支援。 (繼承來源 ContainerControl) |
CanFocus |
取得指示控制項是否能取得焦點的值。 (繼承來源 Control) |
CanRaiseEvents |
判斷是否可以在控制項上引發事件。 (繼承來源 Control) |
CanSelect |
取得指示能否選取控制項的值。 (繼承來源 Control) |
Capture |
取得或設定值,指出控制項是否捕捉住滑鼠。 (繼承來源 Control) |
CausesValidation |
取得或設定值,指出控制項取得焦點時,是否會在任何需要驗證的控制項上執行驗證。 (繼承來源 Control) |
ClientRectangle |
取得表示控制項工作區的矩形。 (繼承來源 Control) |
ClientSize |
取得或設定表單工作區的大小。 |
CompanyName |
取得包含控制項之應用程式的公司名稱或建立者。 (繼承來源 Control) |
Container |
取得包含 IContainer 的 Component。 (繼承來源 Component) |
ContainsFocus |
取得指示控制項 (或其子控制項之一) 目前是否擁有輸入焦點的值。 (繼承來源 Control) |
ContextMenu |
取得或設定與控制項關聯的捷徑功能表。 (繼承來源 Control) |
ContextMenuStrip |
取得或設定與這個控制項相關的 ContextMenuStrip。 (繼承來源 Control) |
ControlBox |
取得或設定值,指出控制項方塊是否顯示在表單的標題列中。 |
Controls |
取得控制項中包含的控制項集合。 (繼承來源 Control) |
Created |
取得值,指出是否已經建立控制項。 (繼承來源 Control) |
CreateParams |
建立控制代碼時,取得必要的建立參數。 |
CurrentAutoScaleDimensions |
取得螢幕目前的執行階段維度。 (繼承來源 ContainerControl) |
Cursor |
取得或設定滑鼠指標移至控制項上時顯示的游標。 (繼承來源 Control) |
DataBindings |
取得控制項的資料繫結 (Data Binding)。 (繼承來源 Control) |
DataContext |
取得或設定數據系結用途的數據內容。 這是環境屬性。 (繼承來源 Control) |
DefaultCursor |
取得或設定控制項的預設游標。 (繼承來源 Control) |
DefaultImeMode |
取得控制項支援的預設輸入法 (IME) 模式。 |
DefaultMargin |
取得控制項之間的預設指定間距 (單位為像素)。 (繼承來源 Control) |
DefaultMaximumSize |
取得指定為控制項的預設大小之最大值的長度和高度 (單位為像素)。 (繼承來源 Control) |
DefaultMinimumSize |
取得指定為控制項的預設大小之最小值的長度和高度 (單位為像素)。 (繼承來源 Control) |
DefaultPadding |
取得控制項內容的預設內部間距,以像素為單位。 (繼承來源 Control) |
DefaultSize |
取得控制項的預設大小。 |
DesignMode |
取得值,指出 Component 目前是否處於設計模式。 (繼承來源 Component) |
DesktopBounds |
取得或設定 Windows 桌面上表單的大小和位置。 |
DesktopLocation |
取得或設定 Windows 桌面上表單的位置。 |
DeviceDpi |
取得目前顯示控制項的顯示裝置的 DPI 值。 (繼承來源 Control) |
DialogResult |
取得或設定表單的對話方塊結果。 |
DisplayRectangle |
取得表示控制項之虛擬顯示區域的矩形。 (繼承來源 ScrollableControl) |
Disposing |
取得值,指出基底 Control 類別是否正在處置的過程中。 (繼承來源 Control) |
Dock |
取得或設定停駐在其父控制項的控制項框線,並決定控制項隨其父代重新調整大小的方式。 (繼承來源 Control) |
DockPadding |
取得控制項所有邊的停駐填補設定。 (繼承來源 ScrollableControl) |
DoubleBuffered |
取得或設定值,指出這個控制項是否應使用次要緩衝區重繪其介面,以減少或防止重繪閃動 (Flicker)。 (繼承來源 Control) |
Enabled |
取得或設定值,指出控制項是否可回應使用者互動。 (繼承來源 Control) |
Events |
取得附加在這個 Component 上的事件處理常式清單。 (繼承來源 Component) |
Focused |
取得指示控制項是否擁有輸入焦點的值。 (繼承來源 Control) |
Font |
取得或設定控制項顯示之文字字型。 (繼承來源 Control) |
FontHeight |
取得或設定控制項字型的高度。 (繼承來源 Control) |
ForeColor |
取得或設定控制項的前景色彩。 (繼承來源 Control) |
FormBorderColor |
表示構成應用程式使用者介面的視窗或對話方塊。 |
FormBorderStyle |
取得或設定表單的框線樣式。 |
FormCaptionBackColor |
表示構成應用程式使用者介面的視窗或對話方塊。 |
FormCaptionTextColor |
表示構成應用程式使用者介面的視窗或對話方塊。 |
FormCornerPreference |
表示構成應用程式使用者介面的視窗或對話方塊。 |
Handle |
取得控制項要繫結的目標視窗控制代碼。 (繼承來源 Control) |
HasChildren |
取得指示控制項是否包含一或多個子控制項的值。 (繼承來源 Control) |
Height |
取得或設定控制項的高度。 (繼承來源 Control) |
HelpButton |
取得或設定值,指出是否應在表單的標題方塊中顯示 [說明] 按鈕。 |
HorizontalScroll |
取得與水平捲軸相關聯的特性。 (繼承來源 ScrollableControl) |
HScroll |
取得或設定值,指出水平捲軸是否為可見的。 (繼承來源 ScrollableControl) |
Icon |
取得或設定表單的圖示。 |
ImeMode |
取得或設定控制項的輸入法 (IME) 模式。 (繼承來源 Control) |
ImeModeBase |
取得或設定控制項的 IME 模式。 (繼承來源 Control) |
InvokeRequired |
取得一個值。這個值會指示是否由於呼叫端是在建立控制項之執行緒以外的執行緒,因此在進行控制項的方法呼叫時,應呼叫叫用 (Invoke) 方法。 (繼承來源 Control) |
IsAccessible |
取得或設定值,指出可及性應用程式是否見得到控制項。 (繼承來源 Control) |
IsAncestorSiteInDesignMode |
指出這個控件的其中一個上階是否已月臺,以及該月臺在 DesignMode 中。 這是唯讀的屬性。 (繼承來源 Control) |
IsDisposed |
取得指示控制項是否已經處置的值。 (繼承來源 Control) |
IsHandleCreated |
取得指示控制項是否有相關控制代碼的值。 (繼承來源 Control) |
IsMdiChild |
取得或設定值,指出表單是否為多重文件介面 (MDI) 子表單。 |
IsMdiContainer |
取得或設定值,指出表單是否為多重文件介面 (MDI) 子表單的容器。 |
IsMirrored |
取得值,指出是否左右反轉控制項。 (繼承來源 Control) |
IsRestrictedWindow |
取得值,指出表單是否可以無限制地使用所有的視窗和使用者輸入事件。 |
KeyPreview |
取得或設定值,指出表單是否要在事件傳送至焦點所在的控制項之前,接收按鍵事件。 |
LayoutEngine |
取得控制項之配置引擎的快取執行個體。 (繼承來源 Control) |
Left |
取得或設定控制項左邊緣和其容器工作區 (Client Area) 左邊緣之間的距離 (單位為像素)。 (繼承來源 Control) |
Location | |
Location |
取得或設定對應至控制項容器左上角之控制項左上角的座標。 (繼承來源 Control) |
MainMenuStrip |
取得或設定表單的主要功能表容器。 |
Margin |
取得或設定控制項之間的空格。 |
Margin |
取得或設定控制項之間的空格。 (繼承來源 Control) |
MaximizeBox |
取得或設定值,指出是否要在表單的標題列中顯示 [最大化] 按鈕。 |
MaximizedBounds |
取得或設定當表單最大化時的大小。 |
MaximumSize |
取得表單所能調整的大小上限。 |
MdiChildren |
取得表單陣列,表示身為這個表單父代的多重文件介面 (MDI) 子表單。 |
MdiChildrenMinimizedAnchorBottom |
取得或設定最小化 MDI 子系的錨定。 |
MdiParent |
取得或設定這個表單目前的多重文件介面 (MDI) 父表單。 |
Menu |
取得或設定顯示在表單中的 MainMenu。 |
MergedMenu |
取得表單的合併功能表。 |
MinimizeBox |
取得或設定值,表示是否要在表單的標題列中顯示 [最小化] 按鈕。 |
MinimumSize |
取得或設定表單所能調整的大小下限。 |
Modal |
取得值,指出表單是否顯示為強制回應。 |
Name |
取得或設定控制項的名稱。 (繼承來源 Control) |
Opacity |
取得或設定表單的透明度等級。 |
OwnedForms |
取得 Form 物件陣列,代表這個表單擁有的所有表單。 |
Owner |
取得或設定擁有這個表單的表單。 |
Padding |
取得或設定控制項內的邊框間距。 (繼承來源 Control) |
Parent |
取得或設定控制項的父容器。 (繼承來源 Control) |
ParentForm |
取得被指派容器控制項的表單。 (繼承來源 ContainerControl) |
PreferredSize |
取得能夠容納控制項的矩形區域的大小。 (繼承來源 Control) |
ProductName |
取得包含控制項的組件的產品名稱。 (繼承來源 Control) |
ProductVersion |
取得包含控制項的組件的版本。 (繼承來源 Control) |
RecreatingHandle |
取得指示控制項目前是否正重新建立其控制代碼的值。 (繼承來源 Control) |
Region |
取得或設定與控制項關聯的視窗區域。 (繼承來源 Control) |
RenderRightToLeft |
已淘汰.
已淘汰.
此屬性現在已過時。 (繼承來源 Control) |
ResizeRedraw |
取得或設定值,指出控制項重設大小時,是否會重繪本身。 (繼承來源 Control) |
RestoreBounds |
取得處於正常視窗狀態下的表單之位置和大小。 |
Right |
取得控制項右邊緣和其容器工作區 (Client Area) 左邊緣之間的距離 (單位為像素)。 (繼承來源 Control) |
RightToLeft |
取得或設定值,指出控制項的項目是否對齊,以支援使用由右至左字型的地區設定。 (繼承來源 Control) |
RightToLeftLayout |
取得或設定值,指出是否已開啟右到左的左右反轉位置。 |
ScaleChildren |
取得值,以判斷子控制項的縮放。 (繼承來源 Control) |
ShowFocusCues |
取得指示控制項是否應顯示焦點矩形 (Focus Rectangle) 的值。 (繼承來源 Control) |
ShowIcon |
取得或設定值,指出圖示是否會顯示在表單的標題列中。 |
ShowInTaskbar |
取得或設定值,指出表單是否顯示在 Windows 工作列中。 |
ShowKeyboardCues |
取得值,指出使用者介面是否處於可顯示或隱藏鍵盤快速鍵的適當狀態下。 (繼承來源 Control) |
ShowWithoutActivation |
取得值,指出視窗是否將在其顯示時啟動。 |
Site |
取得或設定控制項的站台。 (繼承來源 Control) |
Size |
取得或設定表單的大小。 |
SizeGripStyle |
取得或設定可調整大小的底框樣式,以顯示在表單的右下角。 |
StartPosition |
取得或設定表單在執行階段中的開始位置。 |
TabIndex |
取得或設定控制項容器中的控制項定位順序。 |
TabStop |
取得或設定值,指出使用者是否能使用 TAB 鍵,將焦點 (Focus) 給予這個控制項。 |
TabStop |
取得或設定值,指出使用者是否能使用 TAB 鍵,將焦點 (Focus) 給予這個控制項。 (繼承來源 Control) |
Tag |
取得或設定物件,其包含控制項相關資料。 (繼承來源 Control) |
Text |
取得或設定這個控制項的相關文字。 |
Text |
取得或設定這個控制項的相關文字。 (繼承來源 Control) |
Top |
取得或設定控制項上邊緣和其容器工作區 (Client Area) 上邊緣之間的距離 (單位為像素)。 (繼承來源 Control) |
TopLevel |
取得或設定值,指出是否要將表單顯示為最上層視窗。 |
TopLevelControl |
取得沒有其他 Windows Form 父控制項的父控制項。 通常,這會是內含控制項最外層的 Form。 (繼承來源 Control) |
TopMost |
取得或設定值,該值代表是否要將此表單顯示成最上層的表單。 |
TransparencyKey |
取得或設定將表示表單透明區域的色彩。 |
UseWaitCursor |
取得或設定值,指出是否將等待游標用於目前控制項和所有子控制項。 (繼承來源 Control) |
VerticalScroll |
取得與垂直捲軸相關聯的特性。 (繼承來源 ScrollableControl) |
Visible |
取得或設定值,這個值指出是否顯示控制項及其所有子控制項。 (繼承來源 Control) |
VScroll |
取得或設定值,指出垂直捲軸是否為可見的。 (繼承來源 ScrollableControl) |
Width |
取得或設定控制項的寬度。 (繼承來源 Control) |
WindowState |
取得或設定值,表示表單為最小化、最大化或正常狀態。 |
WindowTarget |
這個屬性與這個類別無關。 (繼承來源 Control) |
方法
事件
Activated |
發生於表單以程式碼或由使用者啟動時。 |
AutoSizeChanged |
發生於 AutoSize 屬性變更時。 |
AutoSizeChanged |
這個事件與這個類別無關。 (繼承來源 Control) |
AutoValidateChanged |
發生於 AutoValidate 屬性變更時。 |
AutoValidateChanged |
發生於 AutoValidate 屬性變更時。 (繼承來源 ContainerControl) |
BackColorChanged |
發生於 BackColor 屬性的值變更時。 (繼承來源 Control) |
BackgroundImageChanged |
發生於 BackgroundImage 屬性的值變更時。 (繼承來源 Control) |
BackgroundImageLayoutChanged |
發生於 BackgroundImageLayout 屬性變更時。 (繼承來源 Control) |
BindingContextChanged |
發生於 BindingContext 屬性的值變更時。 (繼承來源 Control) |
CausesValidationChanged |
發生於 CausesValidation 屬性的值變更時。 (繼承來源 Control) |
ChangeUICues |
發生於焦點或鍵盤使用者介面 (UI) 提示變更時。 (繼承來源 Control) |
Click |
發生於按下控制項時。 (繼承來源 Control) |
ClientSizeChanged |
發生於 ClientSize 屬性的值變更時。 (繼承來源 Control) |
Closed |
發生於表單已關閉時。 |
Closing |
發生於表單正在關閉時。 |
ContextMenuChanged |
發生於 ContextMenu 屬性的值變更時。 (繼承來源 Control) |
ContextMenuStripChanged |
發生於 ContextMenuStrip 屬性的值變更時。 (繼承來源 Control) |
ControlAdded |
發生於加入新控制項至 Control.ControlCollection 時。 (繼承來源 Control) |
ControlRemoved |
發生於從 Control.ControlCollection 移除控制項時。 (繼承來源 Control) |
CursorChanged |
發生於 Cursor 屬性的值變更時。 (繼承來源 Control) |
DataContextChanged |
發生於 DataContext 屬性的值變更時。 (繼承來源 Control) |
Deactivate |
發生於表單失去焦點且不再是使用中的表單時。 |
Disposed |
當 Dispose() 方法的呼叫處置元件時,就會發生。 (繼承來源 Component) |
DockChanged |
發生於 Dock 屬性的值變更時。 (繼承來源 Control) |
DoubleClick |
發生於按兩下控制項時。 (繼承來源 Control) |
DpiChanged |
發生於當表單顯示於顯示裝置上,而該裝置上的 DPI 設定變更時。 |
DpiChangedAfterParent |
發生於某個控制項的父控制項或表單已變更之後,以程式設計方式變更其 DPI 設定時。 (繼承來源 Control) |
DpiChangedBeforeParent |
發生於某個控制項的父控制項或表單發生 DPI 變更事件之前,以程式設計方式變更其 DPI 設定時。 (繼承來源 Control) |
DragDrop |
發生於拖放作業完成時。 (繼承來源 Control) |
DragEnter |
發生於將物件拖曳至控制項邊框時。 (繼承來源 Control) |
DragLeave |
發生於將物件拖出控制項界限時。 (繼承來源 Control) |
DragOver |
發生於將物件拖曳至控制項邊框上方時。 (繼承來源 Control) |
EnabledChanged |
發生於 Enabled 屬性值變更時。 (繼承來源 Control) |
Enter |
發生於輸入控制項時。 (繼承來源 Control) |
FontChanged |
發生在 Font 屬性值變更時。 (繼承來源 Control) |
ForeColorChanged |
發生在 ForeColor 屬性值變更時。 (繼承來源 Control) |
FormBorderColorChanged |
表示構成應用程式使用者介面的視窗或對話方塊。 |
FormCaptionBackColorChanged |
表示構成應用程式使用者介面的視窗或對話方塊。 |
FormCaptionTextColorChanged |
表示構成應用程式使用者介面的視窗或對話方塊。 |
FormClosed |
發生於表單關閉之後。 |
FormClosing |
發生於表單關閉之前。 |
FormCornerPreferenceChanged |
表示構成應用程式使用者介面的視窗或對話方塊。 |
GiveFeedback |
發生於拖曳作業時。 (繼承來源 Control) |
GotFocus |
發生於控制項取得焦點時。 (繼承來源 Control) |
HandleCreated |
發生於為控制項建立控制代碼時。 (繼承來源 Control) |
HandleDestroyed |
發生於終結控制項的控制代碼時。 (繼承來源 Control) |
HelpButtonClicked |
發生於按一下 [說明] 按鈕時。 |
HelpRequested |
發生於使用者要求控制項的說明時。 (繼承來源 Control) |
ImeModeChanged |
發生於 ImeMode 屬性變更時。 (繼承來源 Control) |
InputLanguageChanged |
發生於表單的輸入語言已變更之後。 |
InputLanguageChanging |
發生於使用者嘗試變更表單的輸入語言時。 |
Invalidated |
發生於控制項的顯示需要重新繪製時。 (繼承來源 Control) |
KeyDown |
發生於按下按鍵且焦點在控制項時。 (繼承來源 Control) |
KeyPress |
發生於 控制項有焦點,並按下字元空格鍵或退格鍵時。 (繼承來源 Control) |
KeyUp |
發生於放開按鍵且焦點在控制項時。 (繼承來源 Control) |
Layout |
發生於控制項應重新調整其子控制項位置時。 (繼承來源 Control) |
Leave |
發生於輸入焦點離開控制項時。 (繼承來源 Control) |
Load |
發生在表單第一次顯示之前。 |
LocationChanged |
發生於 Location 屬性值變更時。 (繼承來源 Control) |
LostFocus |
發生於控制項遺失焦點時。 (繼承來源 Control) |
MarginChanged |
發生於 Margin 屬性變更時。 |
MarginChanged |
發生於控制項的邊界變更時。 (繼承來源 Control) |
MaximizedBoundsChanged |
發生於 MaximizedBounds 屬性的值已變更時。 |
MaximumSizeChanged |
發生於 MaximumSize 屬性的值已變更時。 |
MdiChildActivate |
發生於多重文件介面 (MDI) 子表單在 MDI 應用程式內啟動或關閉時。 |
MenuComplete |
發生於表單的功能表失去焦點時。 |
MenuStart |
發生於表單的功能表接收焦點時。 |
MinimumSizeChanged |
發生於 MinimumSize 屬性的值已變更時。 |
MouseCaptureChanged |
發生於控制項遺失滑鼠捕捉時。 (繼承來源 Control) |
MouseClick |
發生於使用滑鼠按一下控制項時。 (繼承來源 Control) |
MouseDoubleClick |
發生於以滑鼠按兩下控制項時。 (繼承來源 Control) |
MouseDown |
發生於滑鼠指標位於控制項上並按下滑鼠按鍵時。 (繼承來源 Control) |
MouseEnter |
發生於滑鼠指標進入控制項時。 (繼承來源 Control) |
MouseHover |
發生於滑鼠指標停留在控制項上時。 (繼承來源 Control) |
MouseLeave |
發生於滑鼠指標離開控制項時。 (繼承來源 Control) |
MouseMove |
發生於滑鼠指標移至控制項上時。 (繼承來源 Control) |
MouseUp |
發生於滑鼠指標位於控制項上並放開滑鼠按鍵時。 (繼承來源 Control) |
MouseWheel |
發生於滑鼠滾輪移動且焦點在控制項時。 (繼承來源 Control) |
Move |
發生於控制項移動時。 (繼承來源 Control) |
PaddingChanged |
發生於控制項的邊框間距變更時。 (繼承來源 Control) |
Paint |
發生於重繪控制項時。 (繼承來源 Control) |
ParentChanged |
發生在 Parent 屬性值變更時。 (繼承來源 Control) |
PreviewKeyDown |
發生於焦點位於這個控制項上時並按下鍵盤按鍵的 KeyDown 事件之前。 (繼承來源 Control) |
QueryAccessibilityHelp |
發生於 AccessibleObject 為協助工具應用程式提供說明時。 (繼承來源 Control) |
QueryContinueDrag |
發生於拖放作業時,讓拖曳來源能夠決定是否應取消拖放作業。 (繼承來源 Control) |
RegionChanged |
發生於 Region 屬性的值變更時。 (繼承來源 Control) |
Resize |
發生於重設控制項大小時。 (繼承來源 Control) |
ResizeBegin |
發生於表單進入調整大小模式時。 |
ResizeEnd |
發生於表單結束調整大小模式時。 |
RightToLeftChanged |
發生在 RightToLeft 屬性值變更時。 (繼承來源 Control) |
RightToLeftLayoutChanged |
發生於 RightToLeftLayout 屬性的值變更之後。 |
Scroll |
發生於使用者或程式碼捲動工作區時。 (繼承來源 ScrollableControl) |
Shown |
發生於表單第一次顯示時。 |
SizeChanged |
發生在 Size 屬性值變更時。 (繼承來源 Control) |
StyleChanged |
發生於控制項樣式變更時。 (繼承來源 Control) |
SystemColorsChanged |
發生於系統色彩變更時。 (繼承來源 Control) |
TabIndexChanged |
發生於 TabIndex 屬性的值變更時。 |
TabStopChanged |
發生於 TabStop 屬性變更時。 |
TabStopChanged |
發生在 TabStop 屬性值變更時。 (繼承來源 Control) |
TextChanged |
發生在 Text 屬性值變更時。 (繼承來源 Control) |
Validated |
發生於控制項完成驗證時。 (繼承來源 Control) |
Validating |
發生於驗證控制項時。 (繼承來源 Control) |
VisibleChanged |
發生在 Visible 屬性值變更時。 (繼承來源 Control) |
明確介面實作
IContainerControl.ActivateControl(Control) |
啟動指定的控制項。 (繼承來源 ContainerControl) |
IDropTarget.OnDragDrop(DragEventArgs) |
引發 DragDrop 事件。 (繼承來源 Control) |
IDropTarget.OnDragEnter(DragEventArgs) |
引發 DragEnter 事件。 (繼承來源 Control) |
IDropTarget.OnDragLeave(EventArgs) |
引發 DragLeave 事件。 (繼承來源 Control) |
IDropTarget.OnDragOver(DragEventArgs) |
引發 DragOver 事件。 (繼承來源 Control) |