PrintPreviewDialog 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示包含用于从 Windows 窗体应用程序中进行打印的 PrintPreviewControl 的对话框窗体。
public ref class PrintPreviewDialog : System::Windows::Forms::Form
public class PrintPreviewDialog : System.Windows.Forms.Form
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)]
[System.Runtime.InteropServices.ComVisible(true)]
public class PrintPreviewDialog : System.Windows.Forms.Form
type PrintPreviewDialog = class
inherit Form
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.AutoDispatch)>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type PrintPreviewDialog = class
inherit Form
Public Class PrintPreviewDialog
Inherits Form
- 继承
-
PrintPreviewDialog
- 属性
示例
下面的代码示例演示如何 PrintPreviewDialog 设置 Document 和 UseAntiAlias 属性。 该示例假定窗体包含名为 TreeViewTreeView1
的 TreeNode ,其中包含 对象。
Tag每个 TreeNode 对象的 属性必须设置为运行示例的计算机可以访问的完全限定文档名称。 将每个 TreeNode.Text 属性设置为标识由 TreeNode.Tag 属性指定的文件的字符串。 例如,可以将 设置为 TreeNode1.Tag
“c:\myDocuments\recipe.doc”和 TreeNode1.Text
“recipe.doc”。 该示例还假定窗体包含一个名为 PrintPreviewDialogPrintPreviewDialog1
和一个名为 的 Button1
按钮。 若要运行此示例,请在 InitializePrintPreviewDialog
窗体的构造函数或 Load 事件处理程序中调用 方法。
// Declare the dialog.
internal:
PrintPreviewDialog^ PrintPreviewDialog1;
private:
// Declare a PrintDocument object named document.
System::Drawing::Printing::PrintDocument^ document;
// Initialize the dialog.
void InitializePrintPreviewDialog()
{
// Create a new PrintPreviewDialog using constructor.
this->PrintPreviewDialog1 = gcnew PrintPreviewDialog;
//Set the size, location, and name.
this->PrintPreviewDialog1->ClientSize = System::Drawing::Size( 400, 300 );
this->PrintPreviewDialog1->Location = System::Drawing::Point( 29, 29 );
this->PrintPreviewDialog1->Name = "PrintPreviewDialog1";
// Associate the event-handling method with the
// document's PrintPage event.
this->document->PrintPage += gcnew System::Drawing::Printing::PrintPageEventHandler( this, &Form1::document_PrintPage );
// Set the minimum size the dialog can be resized to.
this->PrintPreviewDialog1->MinimumSize = System::Drawing::Size( 375, 250 );
// Set the UseAntiAlias property to true, which will allow the
// operating system to smooth fonts.
this->PrintPreviewDialog1->UseAntiAlias = true;
}
void Button1_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
if ( TreeView1->SelectedNode != nullptr )
{
document->DocumentName = TreeView1->SelectedNode->Tag->ToString();
}
// Set the PrintPreviewDialog.Document property to
// the PrintDocument object selected by the user.
PrintPreviewDialog1->Document = document;
// Call the ShowDialog method. This will trigger the document's
// PrintPage event.
PrintPreviewDialog1->ShowDialog();
}
void document_PrintPage( Object^ /*sender*/, System::Drawing::Printing::PrintPageEventArgs^ e )
{
// Insert code to render the page here.
// This code will be called when the PrintPreviewDialog.Show
// method is called.
// The following code will render a simple
// message on the document in the dialog.
String^ text = "In document_PrintPage method.";
System::Drawing::Font^ printFont = gcnew System::Drawing::Font( "Arial",35,System::Drawing::FontStyle::Regular );
e->Graphics->DrawString( text, printFont, System::Drawing::Brushes::Black, 0, 0 );
}
// Declare the dialog.
internal PrintPreviewDialog PrintPreviewDialog1;
// Declare a PrintDocument object named document.
private System.Drawing.Printing.PrintDocument document =
new System.Drawing.Printing.PrintDocument();
// Initialize the dialog.
private void InitializePrintPreviewDialog()
{
// Create a new PrintPreviewDialog using constructor.
this.PrintPreviewDialog1 = new PrintPreviewDialog();
//Set the size, location, and name.
this.PrintPreviewDialog1.ClientSize =
new System.Drawing.Size(400, 300);
this.PrintPreviewDialog1.Location =
new System.Drawing.Point(29, 29);
this.PrintPreviewDialog1.Name = "PrintPreviewDialog1";
// Associate the event-handling method with the
// document's PrintPage event.
this.document.PrintPage +=
new System.Drawing.Printing.PrintPageEventHandler
(document_PrintPage);
// Set the minimum size the dialog can be resized to.
this.PrintPreviewDialog1.MinimumSize =
new System.Drawing.Size(375, 250);
// Set the UseAntiAlias property to true, which will allow the
// operating system to smooth fonts.
this.PrintPreviewDialog1.UseAntiAlias = true;
}
private void Button1_Click(object sender, System.EventArgs e)
{
if (TreeView1.SelectedNode != null)
// Set the PrintDocument object's name to the selectedNode
// object's tag, which in this case contains the
// fully-qualified name of the document. This value will
// show when the dialog reports progress.
{
document.DocumentName = TreeView1.SelectedNode.Tag.ToString();
}
// Set the PrintPreviewDialog.Document property to
// the PrintDocument object selected by the user.
PrintPreviewDialog1.Document = document;
// Call the ShowDialog method. This will trigger the document's
// PrintPage event.
PrintPreviewDialog1.ShowDialog();
}
private void document_PrintPage(object sender,
System.Drawing.Printing.PrintPageEventArgs e)
{
// Insert code to render the page here.
// This code will be called when the PrintPreviewDialog.Show
// method is called.
// The following code will render a simple
// message on the document in the dialog.
string text = "In document_PrintPage method.";
System.Drawing.Font printFont =
new System.Drawing.Font("Arial", 35,
System.Drawing.FontStyle.Regular);
e.Graphics.DrawString(text, printFont,
System.Drawing.Brushes.Black, 0, 0);
}
' Declare the dialog.
Friend WithEvents PrintPreviewDialog1 As PrintPreviewDialog
' Declare a PrintDocument object named document.
Private WithEvents document As New System.Drawing.Printing.PrintDocument
' Initialize the dialog.
Private Sub InitializePrintPreviewDialog()
' Create a new PrintPreviewDialog using constructor.
Me.PrintPreviewDialog1 = New PrintPreviewDialog
'Set the size, location, and name.
Me.PrintPreviewDialog1.ClientSize = New System.Drawing.Size(400, 300)
Me.PrintPreviewDialog1.Location = New System.Drawing.Point(29, 29)
Me.PrintPreviewDialog1.Name = "PrintPreviewDialog1"
' Set the minimum size the dialog can be resized to.
Me.PrintPreviewDialog1.MinimumSize = New System.Drawing.Size(375, 250)
' Set the UseAntiAlias property to true, which will allow the
' operating system to smooth fonts.
Me.PrintPreviewDialog1.UseAntiAlias = True
End Sub
Private Sub Button1_Click(ByVal sender As Object, _
ByVal e As System.EventArgs) Handles Button1.Click
If (TreeView1.SelectedNode IsNot Nothing) Then
' Set the PrintDocument object's name to the selectedNode
' object's tag, which in this case contains the
' fully-qualified name of the document. This value will
' show when the dialog reports progress.
document.DocumentName = TreeView1.SelectedNode.Tag
End If
' Set the PrintPreviewDialog.Document property to
' the PrintDocument object selected by the user.
PrintPreviewDialog1.Document = document
' Call the ShowDialog method. This will trigger the document's
' PrintPage event.
PrintPreviewDialog1.ShowDialog()
End Sub
Private Sub document_PrintPage(ByVal sender As Object, _
ByVal e As System.Drawing.Printing.PrintPageEventArgs) _
Handles document.PrintPage
' Insert code to render the page here.
' This code will be called when the PrintPreviewDialog.Show
' method is called.
' The following code will render a simple
' message on the document in the dialog.
Dim text As String = "In document_PrintPage method."
Dim printFont As New System.Drawing.Font _
("Arial", 35, System.Drawing.FontStyle.Regular)
e.Graphics.DrawString(text, printFont, _
System.Drawing.Brushes.Black, 0, 0)
End Sub
注解
创建 类的 PrintPreviewDialog 实例时,某些读/写属性设置为初始值。 有关这些值的列表,请参阅 PrintPreviewDialog 构造函数。
有关使用 Windows 窗体 打印的详细信息,请参阅System.Drawing.Printing命名空间概述。 如果要从Windows Presentation Foundation应用程序打印,请参阅 System.Printing 命名空间。
构造函数
PrintPreviewDialog() |
初始化 PrintPreviewDialog 类的新实例。 |
字段
ScrollStateAutoScrolling |
确定 AutoScroll 属性的值。 (继承自 ScrollableControl) |
ScrollStateFullDrag |
确定用户是否启用了全窗口拖动。 (继承自 ScrollableControl) |
ScrollStateHScrollVisible |
确定 HScroll 属性的值是否设置为 |
ScrollStateUserHasScrolled |
确定用户是否滚动了 ScrollableControl 控件。 (继承自 ScrollableControl) |
ScrollStateVScrollVisible |
确定 VScroll 属性的值是否设置为 |
属性
AcceptButton |
获取或设置当用户按 Enter 键时所单击的窗体上的按钮。 |
AccessibilityObject |
获取分配给该控件的 AccessibleObject。 (继承自 Control) |
AccessibleDefaultActionDescription |
获取或设置控件的默认操作说明以供具有辅助功能的客户端应用程序使用。 (继承自 Control) |
AccessibleDescription |
获取或设置控件的辅助性说明。 |
AccessibleName |
获取或设置控件的可访问名称。 |
AccessibleRole |
该控件的可访问角色。 |
ActiveControl |
获取或设置容器控件上的活动控件。 (继承自 ContainerControl) |
ActiveMdiChild |
获取当前活动的多文档界面 (MDI) 子窗口。 (继承自 Form) |
AllowDrop |
获取或设置一个值,该值指示控件是否可以接受用户拖放到它上面的数据。 |
AllowTransparency |
获取或设置一个值,该值指示能否调整窗体的不透明度。 (继承自 Form) |
Anchor |
获取或设置控件的定位点样式。 |
AutoScale |
获取或设置一个值,该值指示窗体是否调整其大小以适合该窗体上使用的字体高度,以及是否缩放其控件。 |
AutoScaleBaseSize |
已过时.
已过时.
PrintPreviewDialog 类不支持 AutoScaleBaseSize 属性。 |
AutoScaleDimensions |
获取或设置控件的设计尺寸。 (继承自 ContainerControl) |
AutoScaleFactor |
获取当前和设计时自动缩放尺寸之间的缩放因子。 (继承自 ContainerControl) |
AutoScaleMode |
获取或设置控件的自动缩放模式。 (继承自 ContainerControl) |
AutoScroll |
获取或设置一个值,该值指示窗体是否启用自动滚动。 |
AutoScrollMargin |
获取或设置自动滚动边距的大小。 |
AutoScrollMinSize |
获取或设置自动滚动条的最小大小。 |
AutoScrollOffset |
获取或设置一个值,该值指示在 ScrollControlIntoView(Control) 中将控件滚动到何处。 (继承自 Control) |
AutoScrollPosition |
获取或设置自动滚动定位的位置。 (继承自 ScrollableControl) |
AutoSize |
获取或设置一个值,该值指示 PrintPreviewDialog 是否自动调整大小以完整显示其内容。 |
AutoSize |
根据 AutoSizeMode 的设置调整窗体的大小。 (继承自 Form) |
AutoSizeMode |
获取或设置窗体自动调整自身大小的模式。 (继承自 Form) |
AutoValidate |
获取或设置当用户将焦点更改到另一个控件时控件如何执行验证。 |
AutoValidate |
获取或设置一个值,该值指示当焦点更改时是否自动验证此容器内的控件。 (继承自 Form) |
BackColor |
获取或设置窗体的背景色。 |
BackgroundImage |
获取或设置控件的背景图像。 |
BackgroundImageLayout |
获取或设置 BackgroundImage 的布局。 |
BackgroundImageLayout |
获取或设置在 ImageLayout 枚举中定义的背景图像布局。 (继承自 Control) |
BindingContext |
获取或设置控件的 BindingContext。 (继承自 ContainerControl) |
Bottom |
获取控件下边缘与其容器的工作区上边缘之间的距离(以像素为单位)。 (继承自 Control) |
Bounds |
获取或设置控件(包括其非工作区元素)相对于其父控件的大小和位置(以像素为单位)。 (继承自 Control) |
CancelButton |
获取或设置 PrintPreviewDialog 的取消按钮。 |
CanEnableIme |
获取一个用以指示是否可以将 ImeMode 属性设置为活动值的值,以启用 IME 支持。 (继承自 ContainerControl) |
CanFocus |
获取一个值,该值指示控件是否可以接收焦点。 (继承自 Control) |
CanRaiseEvents |
确定是否可以在控件上引发事件。 (继承自 Control) |
CanSelect |
获取一个值,该值指示是否可以选中控件。 (继承自 Control) |
Capture |
获取或设置一个值,该值指示控件是否已捕获鼠标。 (继承自 Control) |
CausesValidation |
获取或设置一个值,该值指示输入控件是否导致对需要验证的所有控件进行验证。 |
ClientRectangle |
获取表示控件的工作区的矩形。 (继承自 Control) |
ClientSize |
获取或设置窗体工作区的大小。 (继承自 Form) |
CompanyName |
获取包含控件的应用程序的公司名称或创建者。 (继承自 Control) |
Container |
获取包含 IContainer 的 Component。 (继承自 Component) |
ContainsFocus |
获取一个值,该值指示控件或它的一个子控件当前是否有输入焦点。 (继承自 Control) |
ContextMenu |
获取或设置控件的快捷菜单。 |
ContextMenu |
获取或设置与控件关联的快捷菜单。 (继承自 Control) |
ContextMenuStrip |
获取或设置该控件的快捷菜单。 |
ContextMenuStrip |
获取或设置与此控件关联的 ContextMenuStrip。 (继承自 Control) |
ControlBox |
获取或设置一个值,该值指示在该窗体的标题栏中是否显示控件框。 |
Controls |
获取包含在控件内的控件的集合。 (继承自 Control) |
Created |
获取一个值,该值指示控件是否已经创建。 (继承自 Control) |
CreateParams |
获取创建控件句柄时所需要的创建参数。 (继承自 Form) |
CurrentAutoScaleDimensions |
获取屏幕的当前运行时尺寸。 (继承自 ContainerControl) |
Cursor |
获取或设置控件的光标。 |
DataBindings |
为该控件获取数据绑定。 |
DataContext |
获取或设置用于数据绑定的数据上下文。 这是一个环境属性。 (继承自 Control) |
DefaultCursor |
获取或设置控件的默认光标。 (继承自 Control) |
DefaultImeMode |
获取控件支持的默认输入法编辑器 (IME) 模式。 (继承自 Form) |
DefaultMargin |
获取控件之间默认指定的间距(以像素为单位)。 (继承自 Control) |
DefaultMaximumSize |
获取以像素为单位的长度和高度,此长度和高度被指定为控件的默认最大大小。 (继承自 Control) |
DefaultMinimumSize |
获取 PrintPreviewDialog 控件的默认最小大小,单位为像素。 |
DefaultMinimumSize |
获取以像素为单位的长度和高度,此长度和高度被指定为控件的默认最小大小。 (继承自 Control) |
DefaultPadding |
获取控件内容的默认内部间距(以像素为单位)。 (继承自 Control) |
DefaultSize |
获取控件的默认大小。 (继承自 Form) |
DesignMode |
获取一个值,用以指示 Component 当前是否处于设计模式。 (继承自 Component) |
DesktopBounds |
获取或设置 Windows 桌面上窗体的大小和位置。 (继承自 Form) |
DesktopLocation |
获取或设置 Windows 桌面上窗体的位置。 (继承自 Form) |
DeviceDpi |
获取显示当前控件的显示设备的 DPI 值。 (继承自 Control) |
DialogResult |
获取或设置窗体的对话框结果。 (继承自 Form) |
DisplayRectangle |
获取表示控件的虚拟显示区域的矩形。 (继承自 ScrollableControl) |
Disposing |
获取一个值,该值指示 Control 基类是否在释放进程中。 (继承自 Control) |
Dock |
获取或设置控件在其父控件中的停靠方式。 |
DockPadding |
重写 DockPadding 属性。 |
Document |
获取或设置要预览的文档。 |
DoubleBuffered |
获取或设置一个值,该值指示此控件是否应使用辅助缓冲区重绘其图面,以减少或避免闪烁。 (继承自 Control) |
Enabled |
获取或设置一个值,该值指示是否已启用该控件。 |
Events |
获取附加到此 Component 的事件处理程序的列表。 (继承自 Component) |
Focused |
获取一个值,该值指示控件是否有输入焦点。 (继承自 Control) |
Font |
获取或设置用于控件的字体。 |
FontHeight |
获取或设置控件的字体的高度。 (继承自 Control) |
ForeColor |
获取或设置控件的前景色。 |
FormBorderColor |
表示包含用于从 Windows 窗体应用程序中进行打印的 PrintPreviewControl 的对话框窗体。 (继承自 Form) |
FormBorderStyle |
获取或设置窗体的边框样式。 |
FormCaptionBackColor |
表示包含用于从 Windows 窗体应用程序中进行打印的 PrintPreviewControl 的对话框窗体。 (继承自 Form) |
FormCaptionTextColor |
表示包含用于从 Windows 窗体应用程序中进行打印的 PrintPreviewControl 的对话框窗体。 (继承自 Form) |
FormCornerPreference |
表示包含用于从 Windows 窗体应用程序中进行打印的 PrintPreviewControl 的对话框窗体。 (继承自 Form) |
Handle |
获取控件绑定到的窗口句柄。 (继承自 Control) |
HasChildren |
获取一个值,该值指示控件是否包含一个或多个子控件。 (继承自 Control) |
Height |
获取或设置控件的高度。 (继承自 Control) |
HelpButton |
获取或设置一个值,该值指示是否应在窗体的标题框中显示“帮助”按钮。 |
HorizontalScroll |
获取与水平滚动条关联的特征。 (继承自 ScrollableControl) |
HScroll |
获取或设置一个值,该值指示水平滚动条是否可见。 (继承自 ScrollableControl) |
Icon |
获取或设置窗体的图标。 |
ImeMode |
获取或设置此控件所支持的输入法编辑器 (IME) 模式。 |
ImeModeBase |
获取或设置控件的 IME 模式。 (继承自 Control) |
InvokeRequired |
获取一个值,该值指示调用方在对控件进行方法调用时是否必须调用 Invoke 方法,因为调用方位于创建控件所在的线程以外的线程中。 (继承自 Control) |
IsAccessible |
获取或设置一个值,该值指示控件对辅助功能应用程序是否可见。 (继承自 Control) |
IsAncestorSiteInDesignMode |
指示此控件的上级之一是否位于 DesignMode 中。 此属性为只读。 (继承自 Control) |
IsDisposed |
获取一个值,该值指示控件是否已经被释放。 (继承自 Control) |
IsHandleCreated |
获取一个值,该值指示控件是否有与它关联的句柄。 (继承自 Control) |
IsMdiChild |
获取一个值,该值指示窗体是否为多文档界面 (MDI) 子窗体。 (继承自 Form) |
IsMdiContainer |
获取或设置一个值,该值指示窗体是否为多文档界面 (MDI) 子窗体的容器。 |
IsMirrored |
获取一个值,该值指示此控件是否为镜像控件。 (继承自 Control) |
IsRestrictedWindow |
获取一个值,该值指示窗体是否可以不受限制地使用所有窗口和用户输入事件。 (继承自 Form) |
KeyPreview |
获取或设置一个值,该值指示在将键事件传递到具有焦点的控件前,窗体是否将接收此键事件。 |
LayoutEngine |
获取控件的布局引擎的缓存实例。 (继承自 Control) |
Left |
获取或设置控件左边缘与其容器的工作区左边缘之间的距离(以像素为单位)。 (继承自 Control) |
Location |
获取或设置该控件的左上角相对于其容器的左上角的坐标。 |
MainMenuStrip |
获取或设置窗体的主菜单容器。 (继承自 Form) |
Margin |
获取或设置控件的边距。 |
Margin |
获取或设置控件之间的空间。 (继承自 Form) |
MaximizeBox |
获取或设置一个值,该值指示是否在窗体的标题栏中显示最大化按钮。 |
MaximizedBounds |
获取或设置窗体最大化后的大小。 (继承自 Form) |
MaximumSize |
获取或设置窗体可调整到的最小大小。 |
MdiChildren |
获取窗体的数组,这些窗体表示以此窗体作为父级的多文档界面 (MDI) 子窗体。 (继承自 Form) |
MdiChildrenMinimizedAnchorBottom |
获取或设置最小化的 MDI 子级的定位。 (继承自 Form) |
MdiParent |
获取或设置此窗体的当前多文档界面 (MDI) 父窗体。 (继承自 Form) |
Menu |
获取或设置在窗体中显示的 MainMenu。 |
Menu |
获取或设置在窗体中显示的 MainMenu。 (继承自 Form) |
MergedMenu |
获取窗体的合并菜单。 (继承自 Form) |
MinimizeBox |
获取或设置一个值,该值指示是否在窗体的标题栏中显示“最小化”按钮。 |
MinimumSize |
获取窗体可调整到的最小大小。 |
Modal |
获取一个值,该值指示是否有模式地显示此窗体。 (继承自 Form) |
Name |
获取或设置控件的名称。 (继承自 Control) |
Opacity |
获取或设置窗体的不透明度级别。 |
OwnedForms |
获取 Form 对象的数组,这些对象表示此窗体拥有的所有窗体。 (继承自 Form) |
Owner |
获取或设置拥有此窗体的窗体。 (继承自 Form) |
Padding |
获取或设置控件的空白。 |
Padding |
获取或设置控件内的空白。 (继承自 Control) |
Parent |
获取或设置控件的父容器。 (继承自 Control) |
ParentForm |
获取将容器控件分配给的窗体。 (继承自 ContainerControl) |
PreferredSize |
获取可以容纳控件的矩形区域的大小。 (继承自 Control) |
PrintPreviewControl |
获取一个值,该值指示此窗体中包含的 PrintPreviewControl。 |
ProductName |
获取包含控件的程序集的产品名称。 (继承自 Control) |
ProductVersion |
获取包含控件的程序集的版本。 (继承自 Control) |
RecreatingHandle |
获取一个值,该值指示控件当前是否在重新创建其句柄。 (继承自 Control) |
Region |
获取或设置与控件关联的窗口区域。 (继承自 Control) |
RenderRightToLeft |
已过时.
已过时.
此属性现已过时。 (继承自 Control) |
ResizeRedraw |
获取或设置一个值,该值指示控件在调整大小时是否重绘自己。 (继承自 Control) |
RestoreBounds |
获取窗体在其正常窗口状态下的位置和大小。 (继承自 Form) |
Right |
获取控件右边缘与其容器的工作区左边缘之间的距离(以像素为单位)。 (继承自 Control) |
RightToLeft |
获取或设置一个值,该值指示是否将控件的元素对齐以支持使用从右向左的字体的区域设置。 |
RightToLeftLayout |
获取或设置一个值,该值指示 PrintPreviewDialog 是否应从右向左布局。 |
RightToLeftLayout |
获取或设置一个值,该值指示是否打开从右向左的镜像放置。 (继承自 Form) |
ScaleChildren |
获取一个值,该值确定子控件的缩放。 (继承自 Control) |
ShowFocusCues |
获取一个值,该值指示控件是否应显示聚焦框。 (继承自 Control) |
ShowIcon |
获取或设置一个值,该值指示是否在窗体的标题栏中显示图标。 (继承自 Form) |
ShowInTaskbar |
获取或设置一个值,该值指示是否在 Windows 任务栏中显示窗体。 |
ShowKeyboardCues |
获取一个值,该值指示用户界面是否处于适当的状态以显示或隐藏键盘快捷键。 (继承自 Control) |
ShowWithoutActivation |
获取一个值,该值指示显示窗口时是否激活它。 (继承自 Form) |
Site |
获取或设置控件的站点。 (继承自 Control) |
Size |
获取或设置窗体的大小。 |
SizeGripStyle |
获取或设置在窗体右下角显示的大小调整手柄的样式。 |
StartPosition |
获取或设置运行时对话框的起始位置。 |
TabIndex |
获取或设置控件在其容器内的 Tab 键顺序。 (继承自 Form) |
TabStop |
获取或设置一个值,该值指示用户能否使用 Tab 键将焦点放到该控件上。 |
Tag |
获取或设置包含有关控件的数据的对象。 |
Text |
获取或设置显示在控件上的文本。 |
Top |
获取或设置控件上边缘与其容器的工作区上边缘之间的距离(以像素为单位)。 (继承自 Control) |
TopLevel |
获取或设置一个值,该值指示是否将窗体显示为顶层窗口。 (继承自 Form) |
TopLevelControl |
获取没有另一个 Windows 窗体控件作为其父级的父控件。 通常,这是控件所在的最外面的 Form。 (继承自 Control) |
TopMost |
获取或设置一个值,该值指示窗体是否应显示为应用程序的最顶层窗体。 |
TransparencyKey |
获取或设置将表示窗体透明区域的颜色。 |
UseAntiAlias |
获取或设置一个值,该值指示打印是否使用操作系统的抗锯齿功能。 |
UseWaitCursor |
获取等待光标,通常是沙漏形状。 |
UseWaitCursor |
获取或设置一个值,该值指示是否将等待光标用于当前控件以及所有子控件。 (继承自 Control) |
VerticalScroll |
获取与垂直滚动条相关联的特性。 (继承自 ScrollableControl) |
Visible |
获取或设置一个值,该值指示控件是否可见。 |
VScroll |
获取或设置一个值,该值指示垂直滚动条是否可见。 (继承自 ScrollableControl) |
Width |
获取或设置控件的宽度。 (继承自 Control) |
WindowState |
获取或设置窗体的窗口状态。 |
WindowTarget |
此属性与此类无关。 (继承自 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) |