GrapeCity.Win.Components 名前空間 > GcBalloonTip クラス > Show メソッド : Show(Control) メソッド |
次のサンプルコードは、このメソッドの使用方法を示します。
このサンプルコードは、GcBalloonTip クラスに示されている詳細なコード例の一部を抜粋したものです。
private void button1_MouseEnter(object sender, EventArgs e) { BalloonTipInformation tipInfo = new BalloonTipInformation(); tipInfo.Text = "Show the tip of button!"; tipInfo.Caption = "GcBalloonTip Samples"; gcBalloonTip1.SetBalloonTipInformation(button1, tipInfo); this.gcBalloonTip1.Show(this.button1); }
Private Sub button1_MouseEnter(sender As Object, e As EventArgs) Dim tipInfo As New BalloonTipInformation() tipInfo.Text = "Show the tip of button!" tipInfo.Caption = "GcBalloonTip Samples" gcBalloonTip1.SetBalloonTipInformation(button1, tipInfo) Me.gcBalloonTip1.Show(Me.button1) 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