通过代码更改Telerik WPF按钮的颜色
本文关键字:WPF 按钮 颜色 Telerik 代码 | 更新日期: 2023-09-27 18:24:01
I学习WPF
并构建一个简单的应用程序。这是我的按钮:
<Button x:Name="btnAddFiles" Content="Add" HorizontalAlignment="Left" Margin="1046,34,0,0" VerticalAlignment="Top"
Width="111" Height="34" FontSize="20" Foreground="{DynamicResource {x:Static SystemColors.ActiveBorderBrushKey}}"
Background="{x:Null}" MouseEnter="btnAddFiles_MouseEnter" BorderBrush="Transparent" />
这就是它的样子:
http://s27.postimg.org/h0iq4mrrz/image.png
我已经将按钮背景色更改为Transparent
,所以您看到的背景色就是我的所有应用程序背景色。我只想当鼠标放在按钮上时,将背景颜色更改为Transparent
。当前这是鼠标悬停时的当前值:
http://s30.postimg.org/x61ssujnx/image.png?noCache=1411485462
所以我注册了MouseEnter event
:
private void btnAddFiles_MouseEnter(object sender, MouseEventArgs e)
{
//btnAddFiles.Background = // change the color
}
但我可以看到btnAddFiles.Background
需要Brush
,也不需要Color
有什么想法可以改变吗?
我看不到你的照片,但这就是我们在wpf:中更改回颜色的方式
btnAddFiles.Background = Brushes.Transparent;
您可以在鼠标输入和鼠标离开事件中使用您的代码。
第一次编辑
private void btnAddFiles_MouseEnter(object sender, MouseEventArgs e)
{
btnAddFiles.Background = Brushes.Transparent;
}
private void btnAddFiles_MouseLeave(object sender, MouseEventArgs e)
{
btnAddFiles.Background = Brushes.Lime;
}
第二次编辑:
用于更改边框颜色和厚度:
button1.BorderBrush = Brushes.Red;
Thickness t = new Thickness(5, 5, 5, 5);
button1.BorderThickness = t;
也可以改变你的保证金,这是不正常的。例如
Margin="50,50,0,0"
如果你得到答案,请告诉我。