Control.OnParentEnabledChanged(EventArgs) Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
EnabledChanged Menaikkan peristiwa saat Enabled nilai properti kontainer kontrol berubah.
protected:
virtual void OnParentEnabledChanged(EventArgs ^ e);
protected virtual void OnParentEnabledChanged (EventArgs e);
abstract member OnParentEnabledChanged : EventArgs -> unit
override this.OnParentEnabledChanged : EventArgs -> unit
Protected Overridable Sub OnParentEnabledChanged (e As EventArgs)
Parameter
Contoh
Contoh kode berikut adalah metode penggalangan peristiwa yang dijalankan saat Text nilai properti berubah. Kelas Control ini memiliki beberapa metode dengan pola On
nama PropertyNameChanged
yang menaikkan peristiwa PropertyNameChanged
yang sesuai saat nilai PropertyName berubah (PropertyName mewakili nama properti yang sesuai).
Contoh kode berikut mengubah ForeColor kelas turunan yang TextBox menampilkan data mata uang. Contoh mengonversi teks menjadi angka desimal dan mengubah menjadi ForeColorColor.Red jika angka negatif dan menjadi Color.Black jika angka positif. Contoh ini mengharuskan Anda memiliki kelas yang berasal dari TextBox kelas .
protected:
virtual void OnTextChanged( System::EventArgs^ e ) override
{
try
{
// Convert the text to a Double and determine
// if it is a negative number.
if ( Double::Parse( this->Text ) < 0 )
{
// If the number is negative, display it in Red.
this->ForeColor = Color::Red;
}
else
{
// If the number is not negative, display it in Black.
this->ForeColor = Color::Black;
}
}
catch ( Exception^ )
{
// If there is an error, display the
// text using the system colors.
this->ForeColor = SystemColors::ControlText;
}
TextBox::OnTextChanged( e );
}
protected override void OnTextChanged(System.EventArgs e)
{
try
{
// Convert the text to a Double and determine
// if it is a negative number.
if(double.Parse(this.Text) < 0)
{
// If the number is negative, display it in Red.
this.ForeColor = Color.Red;
}
else
{
// If the number is not negative, display it in Black.
this.ForeColor = Color.Black;
}
}
catch
{
// If there is an error, display the
// text using the system colors.
this.ForeColor = SystemColors.ControlText;
}
base.OnTextChanged(e);
}
Protected Overrides Sub OnTextChanged(e As System.EventArgs)
Try
' Convert the text to a Double and determine
' if it is a negative number.
If Double.Parse(Me.Text) < 0 Then
' If the number is negative, display it in Red.
Me.ForeColor = Color.Red
Else
' If the number is not negative, display it in Black.
Me.ForeColor = Color.Black
End If
Catch
' If there is an error, display the
' text using the system colors.
Me.ForeColor = SystemColors.ControlText
End Try
MyBase.OnTextChanged(e)
End Sub
Keterangan
Menaikkan peristiwa memanggil penanganan aktivitas melalui delegasi. Untuk informasi selengkapnya, lihat Menangani dan Menaikkan Peristiwa.
Metode ini OnParentEnabledChanged juga memungkinkan kelas turunan untuk menangani peristiwa tanpa melampirkan delegasi. Ini adalah teknik yang disukai untuk menangani peristiwa di kelas turunan.
Catatan Bagi Inheritor
Saat mengambil alih di kelas turunan OnParentEnabledChanged(EventArgs) , pastikan untuk memanggil metode kelas OnParentEnabledChanged(EventArgs) dasar sehingga delegasi terdaftar menerima peristiwa tersebut.