首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > .NET Framework >

初学者!WPF做一个Button和一个Rectangle,使点击Button的时候Rectangle变色~

2012-05-22 
菜鸟求助!!WPF做一个Button和一个Rectangle,使点击Button的时候Rectangle变色~~做一个Button和一个Rectang

菜鸟求助!!WPF做一个Button和一个Rectangle,使点击Button的时候Rectangle变色~~
做一个Button和一个Rectangle,使点击Button的时候Rectangle从原来的白色变成绿色



[解决办法]

C# code
private void button1_Click(object sender, RoutedEventArgs e)        {            SolidColorBrush myBrush = new SolidColorBrush(Colors.Green);            this.rectangle1.Fill = myBrush;        }
[解决办法]
private void button1_Click(object sender, RoutedEventArgs e)
{
if (this.isClicked == false)
{
this.button1.IsEnabled = false;
}
else
{
this.isClicked = false;
this.rectangle1.Style = (Style)this.FindResource("rect1Style");
this.button1.IsEnabled = false;
}
}
自己写个rect1Style

热点排行