GrapeCity.Win.Components 名前空間 > GcBalloonTip クラス > Show メソッド : Show(Control,Rectangle,BalloonTipInformation) メソッド |
例外 | 解説 |
---|---|
System.ArgumentNullException | パラメーターcontrolがnull 参照 (Visual Basicでは Nothing)です。 |
次のサンプルコードは、このメソッドを使用してコントロール内の指定した矩形にバルーンチップを表示する方法を示します。このサンプルコードを実行するには、System.Windows.Forms.Form プロジェクトを作成し、gcBalloonTip1 という名前の GcBalloonTip インスタンスと、button1 という名前の System.Windows.Forms.Button インスタンスを追加して、以下のコードをプロジェクトに貼り付けます。そして、このサンプルで定義したイベントハンドラを button1 の System.Windows.Forms.Control.MouseEnter イベントに関連付けます。
private void button1_MouseEnter(object sender, EventArgs e) { BalloonTipInformation tipInfo = new BalloonTipInformation(); tipInfo.Text = "Show the tip at the bottom center of button!"; tipInfo.Caption = "GcBalloonTip Samples"; Rectangle showingBounds = new Rectangle(0,0, this.button1.Width, this.button1.Height); this.gcBallonTip1.Show(this.button1, showingBounds, tipInfo); }
Private Sub button1_MouseEnter(ByVal sender As Object, ByVal e As EventArgs) Dim tipInfo As New BalloonTipInformation() tipInfo.Text = "Show the tip at the bottom center of button!" tipInfo.Caption = "GcBalloonTip Samples" Dim showingBounds As New Rectangle(0, 0, Me.button1.Width, Me.button1.Height) Me.gcBallonTip1.Show(Me.button1, showingBounds, tipInfo) 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