Control.ClientSize 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置控件的工作区的高度和宽度。
public:
property System::Drawing::Size ClientSize { System::Drawing::Size get(); void set(System::Drawing::Size value); };
[System.ComponentModel.Browsable(false)]
public System.Drawing.Size ClientSize { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.ClientSize : System.Drawing.Size with get, set
Public Property ClientSize As Size
属性值
Size,表示控件的工作区的维数。
- 属性
示例
下面的代码示例调整指定控件的大小,以便控件容纳其格式化文本。 带格式的文本是 Text 控件分配给 Font 文本的属性。 AutoSizeControl
此示例中的方法还具有一个textPadding
参数,该参数表示要应用于控件的所有边缘的填充。 若要使填充显示相等,请将文本与 ContentAlignment.MiddleCenter 值对齐(如果控件支持)。
private:
void AutoSizeControl( Control^ control, int textPadding )
{
// Create a Graphics object for the Control.
Graphics^ g = control->CreateGraphics();
// Get the Size needed to accommodate the formatted Text.
System::Drawing::Size preferredSize = g->MeasureString( control->Text, control->Font ).ToSize();
// Pad the text and resize the control.
control->ClientSize = System::Drawing::Size( preferredSize.Width + (textPadding * 2), preferredSize.Height + (textPadding * 2) );
// Clean up the Graphics object.
delete g;
}
private void AutoSizeControl(Control control, int textPadding)
{
// Create a Graphics object for the Control.
Graphics g = control.CreateGraphics();
// Get the Size needed to accommodate the formatted Text.
Size preferredSize = g.MeasureString(
control.Text, control.Font).ToSize();
// Pad the text and resize the control.
control.ClientSize = new Size(
preferredSize.Width + (textPadding * 2),
preferredSize.Height+(textPadding * 2) );
// Clean up the Graphics object.
g.Dispose();
}
Private Sub AutoSizeControl(control As Control, textPadding As Integer)
' Create a Graphics object for the Control.
Dim g As Graphics = control.CreateGraphics()
' Get the Size needed to accommodate the formatted Text.
Dim preferredSize As Size = g.MeasureString( _
control.Text, control.Font).ToSize()
' Pad the text and resize the control.
control.ClientSize = New Size( _
preferredSize.Width + textPadding * 2, _
preferredSize.Height + textPadding * 2)
' Clean up the Graphics object.
g.Dispose()
End Sub
注解
控件的工作区是控件的边界,减去滚动条、边框、标题栏和菜单等非封闭元素。 调用 SetClientSizeCore 该方法以设置 ClientSize 属性。 ClientSize属性并不总是通过其set
方法更改,SetClientSizeCore因此应重写该方法,以确保在设置属性时ClientSize执行代码。
属性Size.WidthSize.Height表示控件工作区的宽度和高度。 可以使用此属性获取控件的工作区的大小,这些任务如在控件图面上绘制。
有关绘制控件的详细信息,请参阅呈现Windows 窗体控件。
备注
无法将应用程序设置绑定到此属性。 有关应用程序设置的详细信息,请参阅 应用程序设置概述。