Compartilhar via


Como: Create a Button That Has an Image

This example shows how to include an image on a Button.

Exemplo

The following example creates two Button controls. One Button contains text and the other contains an image. A imagem está em uma pasta chamada de dados, que é uma subpasta da pasta do projeto de exemplo. When a user clicks the Button that has the image, the background and the text of the other Button change.

This example creates Button controls by using markup but uses code to write the Click event handlers.

<Button Name="btn5" Width="50" Height="30" Click="OnClick5">
  <Image Source="data\flower.jpg"></Image>
</Button>
<Button Name="btn6" BorderBrush="Black">Click the picture.</Button>
Private Sub OnClick5(ByVal sender As Object, ByVal e As RoutedEventArgs)
    btn6.FontSize = 16
    btn6.Content = "This is my favorite photo."
    btn6.Background = Brushes.Red
End Sub
void OnClick5(object sender, RoutedEventArgs e)
{
    btn6.FontSize = 16;
    btn6.Content = "This is my favorite photo.";
    btn6.Background = Brushes.Red;
}

Consulte também

Conceitos

Controles

Outros recursos

Biblioteca de controle