Control.BackgroundImageChanged イベント
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
BackgroundImage プロパティの値が変化したときに発生します。
public:
event EventHandler ^ BackgroundImageChanged;
public event EventHandler BackgroundImageChanged;
public event EventHandler? BackgroundImageChanged;
member this.BackgroundImageChanged : EventHandler
Public Custom Event BackgroundImageChanged As EventHandler
イベントの種類
例
次のコード例は、プロパティ値が変更されたときに Text 実行されるイベント ハンドラーです。 クラスには、対応する PropertyName 値が変更されたときに発生する名前パターン PropertyNameChanged
を持ついくつかのメソッドがあります (PropertyName は、対応するプロパティの名前を表します)。Control
次のコード例では、 ForeColor 表示する通貨データの を TextBox 変更します。 この例では、テキストを 10 進数に変換し、数値が負の場合は にColor.Red、数値が正の場合は を にColor.Black変更ForeColorします。 この例では、 を 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
注釈
このイベントは、プログラムによる変更またはユーザー操作によって プロパティが変更された場合 BackgroundImage に発生します。
イベントの処理の詳細については、「処理とイベントの発生」を参照してください。
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET