您好,登錄后才能下訂單哦!
要使Button控件的文本顏色動態變化,您可以在代碼中設置Button的Foreground屬性。以下是一個簡單的示例,展示了如何在WPF應用程序中實現這一功能:
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="150" Width="300">
<Grid>
<Button Name="myButton" Content="點擊我改變顏色" Click="Button_Click"/>
</Grid>
</Window>
using System.Windows;
using System.Windows.Media;
namespace WpfApp
{
public partial class MainWindow : Window
{
private bool isRed = true;
public MainWindow()
{
InitializeComponent();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
if (isRed)
{
myButton.Foreground = new SolidColorBrush(Colors.Blue);
}
else
{
myButton.Foreground = new SolidColorBrush(Colors.Red);
}
isRed = !isRed;
}
}
}
在這個示例中,我們使用一個布爾變量isRed
來跟蹤按鈕文本的當前顏色。每次點擊按鈕時,我們都會切換isRed
的值,并相應地更改按鈕的Foreground屬性。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。