Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
This example shows how to include an Image in a CheckBox. The example illustrates that a check box can contain content other than text.
Example
The following example creates a CheckBox that contains an Image and some text. When a user clicks the CheckBox, the text changes.
The example uses markup to create the CheckBox and code-behind to create the event handler.
<CheckBox Name="cb6" Checked="HandleChange1"><Image Source="data\flower.jpg" Height="30" Width="30"/>
</CheckBox>
private void HandleChange1(object sender, RoutedEventArgs e)
{
txt.FontSize = 16;
txt.Text = "I took this photo yesterday.";
}
For the complete sample, see CheckBox Sample.
See Also
Tasks
How to: Create a CheckBox
How to: Use Triggers to Style a CheckBox