Button コンストラクタとは? わかりやすく解説

Button コンストラクタ

Button クラス新しインスタンス初期化します。

名前空間: System.Web.UI.WebControls
アセンブリ: System.Web (system.web.dll 内)
構文構文

解説解説
使用例使用例

Button クラス新しインスタンス作成および初期化する方法次のコード例示します

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

<html>

<head>

   <script runat="server">

      Sub Page_Load(sender As Object,
 e As EventArgs)

         ' Create a new Button control.
         Dim NewButton As Button = New
 Button()
         NewButton.Text="Click Me"

         ' Register the event-handling method for the Click event. 
         AddHandler NewButton.Click, AddressOf
 Button_Click

         ' Add the control to the Controls collection of the
         ' PlaceHolder control. 
         Place.Controls.Clear()
         Place.Controls.Add(NewButton)

      End Sub

      Sub Button_Click(sender as Object,
 e As EventArgs)

         Message.Text = "Hello World"

      End Sub

   </script>

</head>

<body>

   <form runat="server">

      <h3> Button Constructor Example </h3>

      <asp:Placeholder id="Place" 
           runat="server"/>

      <br><br>

      <asp:Label id="Message" 
           runat="server"/>

   </form>

</body>

</html>

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

<html>

<head>

   <script runat="server">

      void Page_Load(Object sender, EventArgs e)
      {

         // Create a new Button control.
         Button NewButton = new Button();
         NewButton.Text="Click Me";

         // Register the event-handling method for the Click event.
 
         NewButton.Click += new EventHandler(this.Button_Click);

         // Add the control to the Controls collection of the
         // PlaceHolder control. 
         Place.Controls.Clear();
         Place.Controls.Add(NewButton);

      }

      void Button_Click(Object sender, EventArgs e)
      {

         Message.Text = "Hello World";

      }

   </script>

</head>

<body>

   <form runat="server">

      <h3> Button Constructor Example </h3>

      <asp:Placeholder id="Place" 
           runat="server"/>

      <br><br>

      <asp:Label id="Message" 
           runat="server"/>

   </form>

</body>

</html>

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

Button コンストラクタ

Button クラス新しインスタンス初期化します。

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

解説解説
使用例使用例

Button作成し、その DialogResult プロパティを DialogResult の OK 値に設定してForm追加するコード例を、次に示します

Private Sub InitializeMyButton()
    ' Create and initialize a Button.
    Dim button1 As New Button()
    
    ' Set the button to return a value of OK when clicked.
    button1.DialogResult = DialogResult.OK
    
    ' Add the button to the form.
    Controls.Add(button1)
End Sub 'InitializeMyButton
private void InitializeMyButton()
 {
    // Create and initialize a Button.
    Button button1 = new Button();
 
    // Set the button to return a value of OK when clicked.
    button1.DialogResult = DialogResult.OK;
 
    // Add the button to the form.
    Controls.Add(button1);
 }
 
private:
   void InitializeMyButton()
   {
      // Create and initialize a Button.
      Button^ button1 = gcnew Button;
      
      // Set the button to return a value of OK when clicked.
      button1->DialogResult = ::DialogResult::OK;
      
      // Add the button to the form.
      Controls->Add( button1 );
   }
private void InitializeMyButton()
{
    // Create and initialize a Button.
    Button button1 = new Button();
    
    // Set the button to return a value of OK when clicked.
    button1.set_DialogResult(get_DialogResult().OK);
    
    // Add the button to the form.
    get_Controls().Add(button1);
} //InitializeMyButton
private function InitializeMyButton()
 {
    // Create and initialize a Button.
    var button1 : Button = new Button();
 
    // Set the button to return a value of OK when clicked.
    button1.DialogResult = System.Windows.Forms.DialogResult.OK;
 
    // Add the button to the form.
    Controls.Add(button1);
 }
 
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「Button コンストラクタ」の関連用語

Button コンストラクタのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



Button コンストラクタのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS