2010年9月26日

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 的 Vertic... 阅读全文

posted @ 2010-09-26 14:02 imbob 阅读(614) 评论(0) 推荐(0) 编辑

silverlight 4 知识归类与汇总(二)常用控件篇

摘要: ContentPropertyAttribute 类 指定在通过 XAML 处理器分析某个类时,可以将该类的哪个属性解释为内容属性。(XAML子元素隐式添加到的属性) (该子元素将添加到其Name属性中)1 内容控件只包含单一项的控件,其Content属性的类型为object如果其内容为UIElement或者模板,则对其进行渲染,否则调用ToString()方法,将返回值放到TextBlock里以... 阅读全文

posted @ 2010-09-26 10:10 imbob 阅读(441) 评论(0) 推荐(0) 编辑

导航