wpf 判断按钮的背景色是什么颜色

我先我设置背景色:btn.Background=newSolidColorBrush(Colors.Transparent);如我想判断:如果当前按钮背景色为透明色,则背... 我先我设置背景色:btn.Background = new SolidColorBrush(Colors.Transparent);
如我想判断:如果当前按钮背景色为透明色,则背景色改成红色,否则背景色为透明色。
但是我调试发现,并没有进if,下面贴代码:
if (btnAlarm[i].Background == Brushes.Transparent)
{
btnAlarm[i].Background = new SolidColorBrush(Colors.Red);
}
else
{
btnAlarm[i].Background = new SolidColorBrush(Colors.Transparent);
}

该怎么判断呢?
展开
 我来答
匿名用户
2017-09-11
展开全部
我写了个例子给你,不肯定是不是你要实现的效果哈。(基于c#)前端代码:后台代码publicpartialclassPage1:Page{publicPage1(){InitializeComponent();}stringtag=string.Empty;privatevoidbtn_Click(objectsender,RoutedEventArgse){Buttonbtn=senderasButton;if(tag==string.Empty){btn.Background=newSolidColorBrush(Colors.Red);txt.Text="0";tag="0";}else{btn.Background=newSolidColorBrush(Colors.Blue);txt.Text="null";tag=string.Empty;}}}
南京新华电脑专修学院
2017-09-11 · 新华电脑教育用心为户提供专业
南京新华电脑专修学院
新华电脑教育用心为户提供专业的电脑相关专业疑问解答
向TA提问
展开全部
前端代码:
<Grid>
<StackPanel>
<Button Background="Blue" Name="btn" Width="100" Height="100" Click="btn_Click"></Button>
<TextBlock Name="txt" Text="null" HorizontalAlignment="Center"/>
</StackPanel>
</Grid>
后台代码
public partial class Page1 : Page
{
public Page1()
{
InitializeComponent();
}

string tag=string.Empty;

private void btn_Click(object sender, RoutedEventArgs e)
{
Button btn = sender as Button;
if (tag == string.Empty)
{
btn.Background = new SolidColorBrush(Colors.Red);
txt.Text = "0";
tag = "0";
}
else
{
btn.Background = new SolidColorBrush(Colors.Blue);
txt.Text = "null";
tag = string.Empty;
}
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式