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

为什么要这样设置属性?解决方案

2012-04-05 
为什么要这样设置属性?xmal:XML codeStackPanel NameskplMain BackgroundYellowGreen Margin10

为什么要这样设置属性?
xmal:

XML code
<StackPanel Name="skplMain" Background="YellowGreen" Margin="10" HorizontalAlignment="Center" VerticalAlignment="Center" ></StackPanel>

 
C#:skplMain.Projection.SetValue(PlaneProjection.RotationZProperty, slZ.Value);

为什么不能这样:skplMain.Projection.RotationZProperty = 10.0;?

[解决办法]
这就是依赖属性和普通属性的区别了。
[解决办法]
你不能对该属性直接赋值因为这个属性是依赖属性。

热点排行