PowerTools InputMan for Windows Forms 8.0J
FlatStyle プロパティ (EditBase)
使用例 

派生クラスでオーバーライドされると、コントロールのフラットスタイルを取得または設定します。
構文
Public MustOverride Property FlatStyle As FlatStyleEx
public abstract FlatStyleEx FlatStyle {get; set;}

プロパティ値

コントロールのフラットスタイルを指定するFlatStyleEx列挙体。
解説
FlatStyle プロパティは、コントロールの表示スタイルを決定します。
使用例
外観を設定した GcMask コントロールを作成するコード例を次に示します。この例では他に DisabledBackColorDisabledForeColor と FlatStyle プロパティを使用しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void SetDisabledColorSettings()
{
    // Create an instance of a GcMask control.
    GcMask gcMask1 = new GcMask();
    // Sets the DisabledBackColor property.
    gcMask1.DisabledBackColor = Color.Gray;
    // Sets the DisabledForeColor property.
    gcMask1.DisabledForeColor = SystemColors.ControlDarkDark;
    // Sets the FlatStyle property.
    gcMask1.FlatStyle = FlatStyleEx.Office2007Blue;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub SetDisabledColorSettings()
    ' Create an instance of a GcMask control.
    Dim gcMask1 As New GcMask()
    ' Sets the DisabledBackColor property.
    gcMask1.DisabledBackColor = Color.Gray
    ' Sets the DisabledForeColor property.
    gcMask1.DisabledForeColor = SystemColors.ControlDarkDark
    ' Sets the FlatStyle property.
    gcMask1.FlatStyle = FlatStyleEx.Office2007Blue
End Sub
参照

EditBase クラス
EditBase メンバ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.