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

バルーンチップを表示するSystem.Windows.Forms.Control
コントロール内でバルーンチップを表示する四角形を表すSystem.Drawing.Rectangle
コントロールに対する特定の位置を示すTipPosition 列挙体の一つ。
バルーンチップデータを含むBalloonTipInformationオブジェクト。
バルーンチップを表示します。
構文

パラメータ

control
バルーンチップを表示するSystem.Windows.Forms.Control
rectangle
コントロール内でバルーンチップを表示する四角形を表すSystem.Drawing.Rectangle
tipPosition
コントロールに対する特定の位置を示すTipPosition 列挙体の一つ。
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_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

参照

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

Send Feedback