Control.BackgroundImageChanged Событие

Определение

Происходит при изменении значения свойства BackgroundImage.

public:
 event EventHandler ^ BackgroundImageChanged;
public event EventHandler BackgroundImageChanged;
public event EventHandler? BackgroundImageChanged;
member this.BackgroundImageChanged : EventHandler 
Public Custom Event BackgroundImageChanged As EventHandler 

Тип события

Примеры

Следующий пример кода является обработчиком событий, который выполняется при Text изменении значения свойства. Класс Control имеет несколько методов с шаблоном имени PropertyNameChanged , которые вызываются при изменении соответствующего значения PropertyName (PropertyName представляет имя соответствующего свойства).

В следующем примере кода изменяется ForeColor для отображения данных о валютах TextBox . В примере текст преобразуется в десятичное число и изменяется на ForeColorColor.Red , если число отрицательное, и на Color.Black , если число положительное. В этом примере требуется, чтобы у вас был 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 изменении свойства путем программного изменения или взаимодействия с пользователем.

Дополнительные сведения об обработке событий см. в разделе Обработка и вызов событий.

Применяется к

См. также раздел