Button コンストラクタ
アセンブリ: 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>

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Button コンストラクタ
アセンブリ: 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 ); }

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- Button コンストラクタのページへのリンク