GrapeCity.Win.Components 名前空間 > GcTouchToolBar クラス : OwnerControl プロパティ |
次のサンプルコードは、このプロパティの使用方法を示します。
このサンプルコードは、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