Control.BackgroundImageChanged Esemény
Definíció
Fontos
Egyes információk olyan, kiadás előtti termékekre vonatkoznak, amelyek a kiadásig még jelentősen módosulhatnak. A Microsoft nem vállal kifejezett vagy törvényi garanciát az itt megjelenő információért.
A tulajdonság értéke BackgroundImage megváltozik.
public:
event EventHandler ^ BackgroundImageChanged;
public event EventHandler BackgroundImageChanged;
public event EventHandler? BackgroundImageChanged;
member this.BackgroundImageChanged : EventHandler
Public Custom Event BackgroundImageChanged As EventHandler
Eseménytípus
Példák
Az alábbi példakód egy eseménykezelő, amely a Text tulajdonságérték változásakor lesz végrehajtva. Az Control osztály számos metódussal rendelkezik a tulajdonságnévChanged nevű névmintával, amelyek a megfelelő PropertyName érték változásakor jönnek létre (a Tulajdonságnév a megfelelő tulajdonság nevét jelöli).
Az alábbi példakód módosítja ForeColor a TextBox megjelenített pénznemadatokat. A példa decimális számmá alakítja a szöveget, és azt módosítja ForeColor , ha Color.Red a szám negatív, és Color.Black ha a szám pozitív. Ez a példa megköveteli, hogy rendelkezik egy Form .TextBox
private:
void currencyTextBox_TextChanged( Object^ /*sender*/, EventArgs^ /*e*/ )
{
try
{
// Convert the text to a Double and determine if it is a negative number.
if ( Double::Parse( currencyTextBox->Text ) < 0 )
{
// If the number is negative, display it in Red.
currencyTextBox->ForeColor = Color::Red;
}
else
{
// If the number is not negative, display it in Black.
currencyTextBox->ForeColor = Color::Black;
}
}
catch ( Exception^ )
{
// If there is an error, display the text using the system colors.
currencyTextBox->ForeColor = SystemColors::ControlText;
}
}
private void currencyTextBox_TextChanged(object sender, EventArgs e)
{
try
{
// Convert the text to a Double and determine if it is a negative number.
if(double.Parse(currencyTextBox.Text) < 0)
{
// If the number is negative, display it in Red.
currencyTextBox.ForeColor = Color.Red;
}
else
{
// If the number is not negative, display it in Black.
currencyTextBox.ForeColor = Color.Black;
}
}
catch
{
// If there is an error, display the text using the system colors.
currencyTextBox.ForeColor = SystemColors.ControlText;
}
}
Private Sub currencyTextBox_TextChanged(sender As Object, _
e As EventArgs) Handles currencyTextBox.TextChanged
Try
' Convert the text to a Double and determine if it is a negative number.
If Double.Parse(currencyTextBox.Text) < 0 Then
' If the number is negative, display it in Red.
currencyTextBox.ForeColor = Color.Red
Else
' If the number is not negative, display it in Black.
currencyTextBox.ForeColor = Color.Black
End If
Catch
' If there is an error, display the text using the system colors.
currencyTextBox.ForeColor = SystemColors.ControlText
End Try
End Sub
Megjegyzések
Ez az esemény akkor jön létre, ha a BackgroundImage tulajdonságot programozott módosítás vagy felhasználói beavatkozás módosítja.
Az események kezelésével kapcsolatos további információkért lásd : Események kezelése és emelése.