Silverlight 后台设置 button 纯色背景

本文介绍如何通过修改Silverlight按钮的内置模板来实现纯色背景的设置方法。具体步骤包括构造XAML字符串并加载为ControlTemplate,然后将其应用于按钮。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

silverlight Button直接设置其background为某一颜色往往达不到效果。因为其内置模板把按钮背景弄成一个渐变画刷。所以想要纯色的背景就修改其模板。

在后台修改模板的代码如下:

StringBuilder sb = new StringBuilder();
sb.Append( "<ControlTemplate xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml' ");
sb.Append("xmlns:data='clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data' xmlns:mc='http://schemas.openxmlformats.org/markup-compatibility/2006' ");
sb.Append("TargetType='Button' >");
sb.Append("<Border x:Name=\"Border\" Background=\"{TemplateBinding Background}\" ><ContentPresenter VerticalAlignment=\"Center\" HorizontalAlignment=\"Left\" /></Border> ");
sb.Append("</ControlTemplate> ");

ControlTemplate ct = XamlReader.Load(sb.ToString()) as ControlTemplate;
btn.Template = ct;
btn.Foreground = new SolidColorBrush(Colors.White);
btn.Background = new SolidColorBrush(Color.FromArgb(0xff, 0x49, 0xa9, 0x8d));

转载于:https://www.cnblogs.com/ppzbty/p/5873165.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值