silverlight 4 知识归类与汇总(三)元素的坐标系与布局面板

1 Margin与Padding的逗号语法

通过使用System.Windows.ThicknessConverter来讲XAML语法转化为具体的Thickness

Margin=”10” 等价于 xxxx.Margin=new Thickness(10);

Margin=”10,5”等价于xxxx.Margin=new Thickness(10,5,10,5);

2 Label 的 VerticalContentAlignment可以使内容垂直居中,而TextBlock没有此属性

3 通过改变Stackpanel的Orientation属性可以实现横竖排版的变换,FlowDirection="RightToLeft"则可以改变其左右的顺序

image image

4 image,viewbox等的Stretch属性来设置填充方式

image Stretch="None"

image Stretch="Fill"

image Stretch="Uniform"

image Stretch="UniformToFill"

posted on 2010-09-26 14:02  imbob  阅读(614)  评论(0编辑  收藏  举报

导航