ControlDesigner.AllowResize 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得值,指出是否可在設計階段環境中調整控制項的大小。
public:
virtual property bool AllowResize { bool get(); };
public virtual bool AllowResize { get; }
member this.AllowResize : bool
Public Overridable ReadOnly Property AllowResize As Boolean
屬性值
如果可以調整控制項大小則為 true
,否則為 false
。
範例
下列程式代碼範例示範如何覆寫 AllowResize 自定義控件設計工具類別中的屬性。
此程式代碼範例是提供給 屬性之較大範例的 TemplateGroups 一部分。
// Do not allow direct resizing unless in TemplateMode
public override bool AllowResize
{
get
{
if (this.InTemplateMode)
return true;
else
return false;
}
}
' Do not allow direct resizing unless in TemplateMode
Public Overrides ReadOnly Property AllowResize() As Boolean
Get
If Me.InTemplateMode Then
Return True
Else
Return False
End If
End Get
End Property
給繼承者的注意事項
AllowResize使用衍生類別中的 屬性,啟用或停用頁面開發人員在設計主應用程式中調整控件的大小。