PowerTools PlusPak for Windows Forms 8.0J
Show(Control,Rectangle,BalloonTipInformation) メソッド
使用例 

バルーンチップを表示するSystem.Windows.Forms.Control
コントロール内でバルーンチップを表示する四角形を表すSystem.Drawing.Rectangle
バルーンチップデータを含むBalloonTipInformationオブジェクト。
バルーンチップを表示します。
構文
Public Overloads Sub Show( _
   ByVal control As Control, _
   ByVal rectangle As Rectangle, _
   ByVal tipInfo As BalloonTipInformation _
) 

パラメータ

control
バルーンチップを表示するSystem.Windows.Forms.Control
rectangle
コントロール内でバルーンチップを表示する四角形を表すSystem.Drawing.Rectangle
tipInfo
バルーンチップデータを含む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

参照

GcBalloonTip クラス
GcBalloonTip メンバ
オーバーロード一覧

Send Feedback