通用 Windows 平台 (UWP)
一个 Microsoft 平台,用于生成和发布适用于 Windows 桌面设备的应用。
49 个问题
我更改了按钮的前景(文本)颜色,但是当我在应用程序中将鼠标悬停在按钮上时,它会切换为黑色(默认)。我试图改变焦点颜色,但没有成功。有没有办法使默认 vs2022 按钮永久变成白色?
<Button x:Name="Apartment_no_1" Content="+ dodaj mieszkanie +" Margin="250,150,0,0" VerticalAlignment="Top" Height="100" Width="178" Background="SkyBlue" Foreground="White" FontFamily="Segoe UI Light" FontSize="16" Click="Apartment_no_1_C" TabIndex="1"/>
我尝试更改焦点颜色,但没有结果。
你好,
你可以修改资源中的ButtonForegroundPointerOver的值,如果你想应用到全局,你可以在App.xaml中添加此资源。
以下是样例
<Application
...>
<Application.Resources>
<SolidColorBrush x:Key="ButtonBackgroundPointerOver" Color="Blue"/>
<SolidColorBrush x:Key="ButtonForegroundPointerOver" Color="Yellow"/>
</Application.Resources>
</Application>
谢谢。