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);
}
该怎么判断呢? 展开
如我想判断:如果当前按钮背景色为透明色,则背景色改成红色,否则背景色为透明色。
但是我调试发现,并没有进if,下面贴代码:
if (btnAlarm[i].Background == Brushes.Transparent)
{
btnAlarm[i].Background = new SolidColorBrush(Colors.Red);
}
else
{
btnAlarm[i].Background = new SolidColorBrush(Colors.Transparent);
}
该怎么判断呢? 展开
2个回答
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;}}}
展开全部
前端代码:
<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;
}
}
}
<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;
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询