PowerTools PlusPak for Windows Forms 8.0J
BorderStyle プロパティ (PlusPakPickerBase)
使用例 

ピッカーコントロールの周囲に描画される境界線のタイプを取得または設定します。
構文
Public Property BorderStyle As BorderStyle
public BorderStyle BorderStyle {get; set;}

プロパティ値

System.Windows.Forms.BorderStyle値の1つ。デフォルトはSystem.Windows.Forms.BorderStyle.Fixed3Dです。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がSystem.Windows.Forms.BorderStyle値の1つではありません。
解説
このプロパティの設定は、FlatStyleの値がFlatStyleEx.FlatFlatStyleEx.StandardFlatStyleEx.SystemFlatStyleEx.Popupのいずれかである場合にのみ適用されます。
使用例
次のサンプルコードは、GrapeCity.Win.Containers.GcComboFrameコントロールでのこのプロパティの使用方法を示します。この例では、BorderStyleSystem.Windows.Forms.BorderStyle.FixedSingleに設定し、SingleBorderColorColor.Blackに設定しています。このサンプルコードは、GrapeCity.Win.Containers.GcComboFrameクラスの概要に示されている詳細なコード例の一部を抜粋したものです。
// Initialize gcComboFrame1.
private void InitialzeMyGcComboFrame()
{
    SetComboFrameContentControl();

    SetComboFrameDropDownControl();

    CreateAndAddComboFrameSideButtons();

    // Set gcComboFrame1's border style and color.
    this.gcComboFrame1.BorderStyle = BorderStyle.FixedSingle;
    this.gcComboFrame1.SingleBorderColor = Color.Black;

    InitializeComboFrameDropDowSettings();

    // Add event hanlder for the ShortcutKeyDown event.
    this.gcComboFrame1.ShortcutKeyDown += new EventHandler<KeyEventArgs>(GcComboFrame1_ShortcutKeyDown);

    // Add some events for gcComboFrame1.
    this.gcComboFrame1.DropDownOpening += new EventHandler<CancelEventArgs>(GcComboFrame1_DropDownOpening);
    this.gcComboFrame1.DropDownOpened += new EventHandler(GcComboFrame1_DropDownOpened);
    this.gcComboFrame1.DropDownClosing += new EventHandler<DropDownClosingEventArgs>(GcComboFrame1_DropDownClosing);
    this.gcComboFrame1.DropDownClosed += new EventHandler<DropDownClosedEventArgs>(GcComboFrame1_DropDownClosed);

    this.gcComboFrame1.DropDownSizeChanged += new EventHandler(GcComboFrame1_DropDownSizeChanged);
}
' Initialize gcComboFrame1.
Private Sub InitialzeMyGcComboFrame()
    SetComboFrameContentControl()

    SetComboFrameDropDownControl()

    CreateAndAddComboFrameSideButtons()

    ' Set gcComboFrame1's border style and color.
    Me.gcComboFrame1.BorderStyle = BorderStyle.FixedSingle
    Me.gcComboFrame1.SingleBorderColor = Color.Black

    InitializeComboFrameDropDowSettings()

    ' Add event hanlder for the ShortcutKeyDown event.
    AddHandler Me.gcComboFrame1.ShortcutKeyDown, AddressOf GcComboFrame1_ShortcutKeyDown

    ' Add some events for gcComboFrame1.
    AddHandler Me.gcComboFrame1.DropDownOpening, AddressOf GcComboFrame1_DropDownOpening
    AddHandler Me.gcComboFrame1.DropDownOpened, AddressOf GcComboFrame1_DropDownOpened
    AddHandler Me.gcComboFrame1.DropDownClosing, AddressOf GcComboFrame1_DropDownClosing
    AddHandler Me.gcComboFrame1.DropDownClosed, AddressOf GcComboFrame1_DropDownClosed

    AddHandler Me.gcComboFrame1.DropDownSizeChanged, AddressOf GcComboFrame1_DropDownSizeChanged
End Sub
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

PlusPakPickerBase クラス
PlusPakPickerBase メンバ

Send Feedback