| Notice Board |
那一天,我不得已上路。..... 在路上,只为温暖我的人。-<在路上〉歌词
|
| -- 2007-11-14 13:27:28 |
View Mode: Normal | Article List
February, 2006 | 1
x:Static , StaticResource 和DynamicResource等XAML 扩展用法
[ 2006-02-28 09:00:00 | Author: ccBoy ]
用XAMLPad试验下面一组XAML的编写,你会对x:Static,StaticResource,以及XAML扩展(Markup Extensions)的嵌套用法有一个比较快的认识
<Rectangle Name="myRectangle" Width="120" Height="20" Fill="Blue" />
对应的代码类似-myRectangle.Fill = Brushes.Blue; --OK
<Rectangle Name="myRectangle" Width="120" Height="20" Fill="SystemColors.ControlBrush" />
对应的代码类似-myRectangle.Fill ="SystemColors.ControlBrush" ; --错误, 变成一个字符串,这显然不是你想要的
...
Read More...
<Rectangle Name="myRectangle" Width="120" Height="20" Fill="Blue" />
对应的代码类似-myRectangle.Fill = Brushes.Blue; --OK
<Rectangle Name="myRectangle" Width="120" Height="20" Fill="SystemColors.ControlBrush" />
对应的代码类似-myRectangle.Fill ="SystemColors.ControlBrush" ; --错误, 变成一个字符串,这显然不是你想要的
...
Read More...
1







