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

タッチアンドホールドされたときにこの GcTouchToolBar を表示するコントロールを取得します。
構文
Public ReadOnly Property OwnerControl As Control
public Control OwnerControl {get;}

プロパティ値

このツールバーを所有するオーナーコントロールを示す System.Windows.Forms.Control オブジェクト。
使用例

次のサンプルコードは、このプロパティの使用方法を示します。

このサンプルコードは、GcTouchToolBarProvider クラスに示されている詳細なコード例の一部を抜粋したものです。

private void button4_Click(object sender, EventArgs e)
{
    gcTouchToolBar1.Items.Clear();
    TouchToolBarButton touchToolBarButton = new TouchToolBarButton();
    touchToolBarButton.Text = "SetBackColorBlue";
    touchToolBarButton.Click += touchToolBarButton_Click;
    gcTouchToolBar1.Items.Add(touchToolBarButton);
    gcTouchToolBar1.Show(button4);
}

void touchToolBarButton_Click(object sender, EventArgs e)
{
    gcTouchToolBar1.OwnerControl.BackColor = Color.Blue;
}
Private Sub button4_Click(sender As Object, e As EventArgs)
    gcTouchToolBar1.Items.Clear()
    Dim touchToolBarButton As New TouchToolBarButton()
    touchToolBarButton.Text = "SetBackColorBlue"
    AddHandler touchToolBarButton.Click, AddressOf touchToolBarButton_Click
    gcTouchToolBar1.Items.Add(touchToolBarButton)
    gcTouchToolBar1.Show(button4)
End Sub

Private Sub touchToolBarButton_Click(sender As Object, e As EventArgs)
    gcTouchToolBar1.OwnerControl.BackColor = Color.Blue
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

参照

GcTouchToolBar クラス
GcTouchToolBar メンバ

Send Feedback