次の方法で共有


WebControl.ToolTip プロパティ

マウス ポインタが Web サーバー コントロールの上を移動したときに表示されるテキストを取得または設定します。

Public Overridable Property ToolTip As String
[C#]
public virtual string ToolTip {get; set;}
[C++]
public: __property virtual String* get_ToolTip();public: __property virtual void set_ToolTip(String*);
[JScript]
public function get ToolTip() : String;public function set ToolTip(String);

プロパティ値

マウス ポインタが Web サーバー コントロールの上を移動したときに表示されるテキスト。既定値は String.Empty です。

解説

ToolTip プロパティを使用して、マウス ポインタが Web サーバー コントロールの上を移動したときに表示されるカスタム テキストを指定します。

メモ   このプロパティは、すべてのブラウザで表示されます。ただし、このプロパティがツール ヒントとして表示されるのは、Microsoft Internet Explorer だけです。他のすべてのブラウザでは、このプロパティは無視されます。

使用例

[Visual Basic, C#, JScript] WebControl 基本クラスから継承された、 Button コントロールに ToolTip プロパティを設定する方法の例を次に示します。

 
<%@ Page Language="VB" AutoEventWireup="True" %>

<html>
 <body>
 
     <h3>ToolTip Property of a Web Control<br></h3>
 
 <script language="VB" runat="server">
 
    Sub SubmitBtn1_Click(sender As Object, e As EventArgs)
        Label1.Text = "Share your happiness with others!"
    End Sub

    Sub SubmitBtn2_Click(sender As Object, e As EventArgs)
        Label1.Text = "Don't worry, be very happy!"
    End Sub
 
 </script>
 
 <form runat=server>
 
     Don't know which button to click?
     <br>
     Move the mouse pointer over the buttons to find out!
     <p>
 
     <asp:Button id="SubmitBtn1" OnClick="SubmitBtn1_Click" 
     Text="Click Me" 
     ToolTip="Click this one if you are happy" runat="server"/>
     <p>
 
     <asp:Button id="SubmitBtn2" OnClick="SubmitBtn2_Click" 
     Text="Click Me" 
     ToolTip="Click this one if you are not too happy" runat="server"/>
     <p>
     
     <asp:Label id="Label1" Font-size=24 Font-Bold="True" BackColor="Yellow" runat="server"/>
 </form>
 
 </body>
 </html>
 

[C#] 
<%@ Page Language="C#" AutoEventWireup="True" %>

<html>
 <body>
 
     <h3>ToolTip Property of a Web Control<br></h3>
 
 <script language="C#" runat="server">
 
     void SubmitBtn1_Click(Object sender, EventArgs e) {
     Label1.Text = "Share your happiness with others!";
     }
 
     void SubmitBtn2_Click(Object sender, EventArgs e) {
     Label1.Text = "Don't worry, be very happy!";
     }
 
 </script>
 
 <form runat=server>
 
     Don't know which button to click?
     <br>
     Move the mouse pointer over the buttons to find out!
     <p>
 
     <asp:Button id="SubmitBtn1" OnClick="SubmitBtn1_Click" 
     Text="Click Me" 
     ToolTip="Click this one if you are happy" runat="server"/>
     <p>
 
     <asp:Button id="SubmitBtn2" OnClick="SubmitBtn2_Click" 
     Text="Click Me" 
     ToolTip="Click this one if you are not too happy" runat="server"/>
     <p>
     
     <asp:Label id="Label1" Font-size=24 Font-Bold="True" BackColor="Yellow" runat="server"/>
 </form>
 
 </body>
 </html>
 

[JScript] 
<%@ Page Language="JScript" AutoEventWireup="True" %>

<html>
 <body>
 
     <h3>ToolTip Property of a Web Control<br></h3>
 
 <script language="JSCRIPT" runat="server">
 
    function SubmitBtn1_Click(sender : Object, e : EventArgs){
        Label1.Text = "Share your happiness with others!"
    }

    function SubmitBtn2_Click(sender : Object, e : EventArgs){
        Label1.Text = "Don't worry, be very happy!"
    }
 
 </script>
 
 <form runat=server>
 
     Don't know which button to click?
     <br>
     Move the mouse pointer over the buttons to find out!
     <p>
 
     <asp:Button id="SubmitBtn1" OnClick="SubmitBtn1_Click" 
     Text="Click Me" 
     ToolTip="Click this one if you are happy" runat="server"/>
     <p>
 
     <asp:Button id="SubmitBtn2" OnClick="SubmitBtn2_Click" 
     Text="Click Me" 
     ToolTip="Click this one if you are not too happy" runat="server"/>
     <p>
     
     <asp:Label id="Label1" Font-size=24 Font-Bold="True" BackColor="Yellow" runat="server"/>
 </form>
 
 </body>
 </html>
 

[C++] C++ のサンプルはありません。Visual Basic、C#、および JScript のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 2000, Windows XP Professional, Windows Server 2003 ファミリ

参照

WebControl クラス | WebControl メンバ | System.Web.UI.WebControls 名前空間