我有这样的事情:
<Grid>
<StackPanel Margin="100,0,98,0">
<Button x:Name="BtProd"
Content="{Binding Produto}"
FontSize="{StaticResource PhoneFontSizeLarge}"
Foreground="{Binding Color}"
Click="BtProd_Click">
</Button>
</StackPanel>
</Grid>
如何更改 C# .cs 文件中按钮的文本颜色?
private void BtProd_Click(object sender, RoutedEventArgs e)
{
?
}
当用户单击按钮时,我想从白色变为浅灰色。谢谢你。