Control.DockChanged Událost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Nastane, když se změní hodnota Dock vlastnosti.
public:
event EventHandler ^ DockChanged;
public event EventHandler DockChanged;
public event EventHandler? DockChanged;
member this.DockChanged : EventHandler
Public Custom Event DockChanged As EventHandler
Event Type
Příklady
Následující příklad kódu je obslužná rutina události, která se spustí při Text změně hodnoty vlastnosti. Třída Control má několik metod s názvem vzor PropertyNameChanged
, které jsou vyvolány, když odpovídající PropertyName hodnota změny(PropertyName představuje název odpovídající vlastnosti).
Následující příklad kódu změní ForeColor TextBox zobrazení dat měny. Příklad převede text na desetinné číslo a změní ForeColor Color.Red hodnotu, jestli je číslo záporné a jestli Color.Black je číslo kladné. Tento příklad vyžaduje, abyste měli Form hodnotu, která obsahuje 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
Poznámky
Tato událost se vyvolá, pokud Dock je vlastnost změněna buď programovou úpravou, nebo interakcí uživatele.
Další informace o zpracování událostí najdete v tématu Zpracování a vyvolávání událostí.