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

ドロップダウンリストの先頭カラムにに画像を表示するかしないか示す値を取得または設定します。
構文
Public Property ShowListBoxImage As Boolean
public bool ShowListBoxImage {get; set;}

プロパティ値

説明
True 画像を表示します。
False 画像を表示しません。
既定値はFalseです。
解説
このプロパティがtrueで、ListItem.Image プロパティがnull 参照 (Visual Basicでは Nothing)でない場合、先頭カラムに画像が表示されます。
使用例
ドロップダウンリストの外観を設定した GcComboBox コントロールを作成するコード例を次に示します。この例では他に ListGradientEffectImageAlignImageWidth と ShowListBoxImage プロパティを使用しています。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void SetAppearanceSettings()
{
    // Creates the GcComboBox control.
    GcComboBox gcComboBox1 = new GcComboBox();

    // Creates the GradientEffect.
    GradientEffect gradienteffect = new GradientEffect();
    gradienteffect.Direction = GradientDirection.Side;
    gradienteffect.EndColor = System.Drawing.Color.FromArgb(224, 224, 224);

    // Sets the GradientEffect to the control.
    gcComboBox1.ListGradientEffect = gradienteffect;

    // Sets the image of the item settings.
    gcComboBox1.ImageAlign = System.Windows.Forms.HorizontalAlignment.Center;
    gcComboBox1.ImageWidth = 30;
    gcComboBox1.ShowListBoxImage = true;
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub SetAppearanceSettings()
    ' Creates the GcComboBox control.
    Dim gcComboBox1 As New GcComboBox()

    ' Creates the GradientEffect.
    Dim gradienteffect As New GradientEffect()
    gradienteffect.Direction = GradientDirection.Side
    gradienteffect.EndColor = System.Drawing.Color.FromArgb(224, 224, 224)

    ' Sets the GradientEffect to the control.
    gcComboBox1.ListGradientEffect = gradienteffect

    ' Sets the image of the item settings.
    gcComboBox1.ImageAlign = System.Windows.Forms.HorizontalAlignment.Center
    gcComboBox1.ImageWidth = 30
    gcComboBox1.ShowListBoxImage = True
End Sub
参照

GcComboBox クラス
GcComboBox メンバ
ImageWidth プロパティ
ImageAlign プロパティ

 

 


© 2004-2015 GrapeCity inc. All rights reserved.