Condividi tramite


Procedura: modificare il colore di un elemento utilizzando eventi di stato attivo

In questo esempio viene illustrato come modificare il colore di un elemento quando ottiene lo stato attivo e perde lo stato attivo usando gli GotFocus eventi e LostFocus .

Questo esempio è costituito da un file XAML (Extensible Application Markup Language) e da un file code-behind.

Esempio

Il codice XAML seguente crea l'interfaccia utente, costituita da due Button oggetti, e associa i gestori eventi per gli GotFocus eventi e LostFocus agli Button oggetti .

<StackPanel>
  <StackPanel.Resources>
    <Style TargetType="{x:Type Button}">
      <Setter Property="Height" Value="20"/>
      <Setter Property="Width" Value="250"/>
      <Setter Property="HorizontalAlignment" Value="Left"/>
    </Style>
  </StackPanel.Resources>
  <Button
      GotFocus="OnGotFocusHandler"
      LostFocus="OnLostFocusHandler">Click Or Tab To Give Keyboard Focus</Button>
  <Button
      GotFocus="OnGotFocusHandler"
      LostFocus="OnLostFocusHandler">Click Or Tab To Give Keyborad Focus</Button>
</StackPanel>

Il code-behind seguente crea i GotFocus gestori eventi e LostFocus . Quando l'oggetto ottiene lo stato attivo della Button tastiera, l'oggetto BackgroundButton di viene modificato in rosso. Quando l'oggetto perde lo stato attivo della Button tastiera, l'oggetto BackgroundButton di viene nuovamente impostato su bianco.

public partial class Window1 : Window
{
    public Window1()
    {
        InitializeComponent();
    }

    // Raised when Button gains focus.
    // Changes the color of the Button to Red.
    private void OnGotFocusHandler(object sender, RoutedEventArgs e)
    {
        Button tb = e.Source as Button;
        tb.Background = Brushes.Red;
    }
    // Raised when Button losses focus.
    // Changes the color of the Button back to white.
    private void OnLostFocusHandler(object sender, RoutedEventArgs e)
    {
        Button tb = e.Source as Button;
        tb.Background = Brushes.White;
    }
}
Partial Public Class Window1
    Inherits Window

    Public Sub New()
        InitializeComponent()
    End Sub

    'raised when Button gains focus. Changes the color of the Button to red.
    Private Sub OnGotFocusHandler(ByVal sender As Object, ByVal e As RoutedEventArgs)
        Dim tb As Button = CType(e.Source, Button)
        tb.Background = Brushes.Red
    End Sub

    'raised when Button loses focus. Changes the color back to white.
    Private Sub OnLostFocusHandler(ByVal sender As Object, ByVal e As RoutedEventArgs)
        Dim tb As Button = CType(e.Source, Button)
        tb.Background = Brushes.White
    End Sub
End Class

Vedi anche