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

コントロールが無効の場合の背景色を取得または設定します。
構文
Public Overridable Property DisabledBackColor As Color
public virtual Color DisabledBackColor {get; set;}

プロパティ値

コントロールが無効の場合の背景色を指定するColor値。 既定値はColor [Control]です。
解説
システムカラーを指定するときはSystemColorsオブジェクトを使用し、 特定の色(BlueやRedなど)を指定する場合はColorを使用します。 また、Enabled プロパティがFalseのときのコントロールの文字色を指定する場合は、 DisabledForeColor プロパティを使用します。
使用例
外観を設定した GcMask コントロールを作成するコード例を次に示します。この例では他に DisabledBackColor、 DisabledForeColorFlatStyle プロパティを使用しています。
//  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 メンバ
BackColor プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.