PowerTools MultiRow for Windows Forms 8.0J
ShowButton プロパティ
使用例 

セルが編集モードでないときにポップアップボタンをどのように表示するかを示す値を取得または設定します。
構文
Public Property ShowButton As CellButtonVisibility
public CellButtonVisibility ShowButton {get; set;}

プロパティ値

セルが編集モードでないときにポップアップボタンをどのように表示するかを表すCellButtonVisibility列挙体の1つ。既定値はCellButtonVisibility.ShowAlwaysです。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がCellButtonVisibility値の1つではありません。
解説

セルが現在のセルのときにPopupCellにボタンを表示する場合は、このプロパティの値をCellButtonVisibility.ShowForCurrentCellに設定します。

ShowButtonプロパティは、セルが読み取り専用かどうかにかかわらず、編集モードでないときのセルの外観に影響します。セルが編集モードのときは常に、System.Windows.Forms.Buttonが横に付いたSystem.Windows.Forms.TextBoxコントロールのようになります。

使用例
次のサンプルコードは、ポップアップ型セルの動作または外観をカスタマイズする方法を示します。このサンプルコードは、PopupCellクラスに示されている詳細なコード例の一部を抜粋したものです。
PopupCell CreateHiddenButtonPopupCell()
{
    PopupCell popupCell1 = new PopupCell();

    popupCell1.ShowButton = CellButtonVisibility.NotShown;
    popupCell1.Size = new Size(130, 21);

    // Show OpenFileDialog to edit file name.
    popupCell1.Popup = new OpenFileDialog();
    popupCell1.PopupValueMember = "FileName";

    return popupCell1;
}
Private Function CreateHiddenButtonPopupCell() As PopupCell
    Dim popupCell1 As New PopupCell()

    popupCell1.ShowButton = CellButtonVisibility.NotShown
    popupCell1.Size = New Size(130, 21)

    ' Show OpenFileDialog to edit file name.
    popupCell1.Popup = New OpenFileDialog()
    popupCell1.PopupValueMember = "FileName"

    Return popupCell1
End Function
参照

PopupCell クラス
PopupCell メンバ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.