有一個StackPanel
一個按鈕buttonPlay
內部,將其豐富的內容,如圖像和標籤WPF
<Button Height="37" HorizontalAlignment="Left" Margin="222,72,0,0" Name="buttonPlay" Click="buttonPlay_Click">
<StackPanel Orientation="Horizontal">
<Image Source="play.jpg" Height="20" Width="27" />
<Label Padding="4" Height="27" Width="55" FontWeight="Bold" FontFamily="Times New Roman"> Play</Label>
</StackPanel>
</Button>
我想在標籤和圖像中的文本改變,當我點擊按鈕,這樣做buttonPlay_Click
事件我有,如果還有條件,但我不知道如何更改標籤或圖像。
private void buttonPlay_Click(object sender, RoutedEventArgs e)
{
if (buttonPlay.Content.ToString() == "Play")
{
//....some actions
buttonPlay.Content = "Stop";
}
else
{
//.....some other actions
buttonPlay.Content = "Play";
}
}
如何根據點擊更新標籤和圖像?
但是如何處理與圖像更新? – cMinor
你是否希望圖像和標籤在條件更新? –
是他們兩個都要更新 – cMinor