GrapeCity.Win.Components 名前空間 > GcBalloonTip クラス > Show メソッド : Show(Control,Rectangle,TipPosition,BalloonTipInformation) メソッド |
Public Overloads Sub Show( _ ByVal control As Control, _ ByVal rectangle As Rectangle, _ ByVal tipPosition As TipPosition, _ ByVal tipInfo As BalloonTipInformation _ )
public void Show( Control control, Rectangle rectangle, TipPosition tipPosition, BalloonTipInformation tipInfo )
例外 | 解説 |
---|---|
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_MouseEnter1(object sender, EventArgs e) { BalloonTipInformation tipInfo = new BalloonTipInformation(); tipInfo.Text = "Show the tip at the top 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, TipPosition.TopCenter, 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 top 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, TipPosition.TopCenter, 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