この記事は翻訳者によって翻訳されたものです。 記事の文章にポインターを重ねると、原文のテキストが表示されます。 |
訳文
原文
|
Control.EnabledChanged イベント
.NET Framework 4
Enabled プロパティの値が変更された場合に発生します。
アセンブリ: System.Windows.Forms (System.Windows.Forms.dll 内)
2 つの RadioButton コントロールを使用して EnabledChanged イベントを示すコード例を次に示します。 一方のボタンをクリックすると、もう一方のボタンの Enabled プロパティの値が false に変更され、MessageBox が表示されます。
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; public class Form1 : Form { private RadioButton radioButton1; private RadioButton radioButton2; public Form1() { InitializeComponent(); } [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } private void InitializeComponent() { this.radioButton1 = new System.Windows.Forms.RadioButton(); this.radioButton2 = new System.Windows.Forms.RadioButton(); this.SuspendLayout(); // // radioButton1 // this.radioButton1.AutoSize = true; this.radioButton1.Location = new System.Drawing.Point(0, 0); this.radioButton1.Name = "radioButton1"; this.radioButton1.Size = new System.Drawing.Size(62, 17); this.radioButton1.TabIndex = 0; this.radioButton1.TabStop = true; this.radioButton1.Text = "Button1"; this.radioButton1.UseVisualStyleBackColor = true; this.radioButton1.EnabledChanged += new System.EventHandler(this.radioButton1_EnabledChanged); // // radioButton2 // this.radioButton2.AutoSize = true; this.radioButton2.Location = new System.Drawing.Point(0, 39); this.radioButton2.Name = "radioButton2"; this.radioButton2.Size = new System.Drawing.Size(100, 17); this.radioButton2.TabIndex = 1; this.radioButton2.TabStop = true; this.radioButton2.Text = "Disable Button1"; this.radioButton2.UseVisualStyleBackColor = true; this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged); // // Form1 // this.ClientSize = new System.Drawing.Size(292, 273); this.Controls.Add(this.radioButton2); this.Controls.Add(this.radioButton1); this.Name = "Form1"; this.ResumeLayout(false); this.PerformLayout(); } private void radioButton2_CheckedChanged(object sender, EventArgs e) { radioButton1.Enabled = false; } private void radioButton1_EnabledChanged(object sender, EventArgs e) { MessageBox.Show("This button has been disabled."); } }
Windows 7, Windows Vista SP1 以降, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core はサポート対象外), Windows Server 2008 R2 (SP1 以降で Server Core をサポート), Windows Server 2003 SP2
.NET Framework では、各プラットフォームのすべてのバージョンはサポートしていません。 サポートされているバージョンについては、「.NET Framework システム要件」を参照してください。