Silverlight:如何设计自定义布局控件?
我想创建一个名为 DetailRegion 的自定义控件,它接受子控件的集合。从那里我想以我选择的方式布局控件。例如...
<localControls:DetailRegion>
<TextBlock Text="Occupation:" Style="{StaticResource Label}" />
<TextBlock Text="{Binding Occupation}" Style="{StaticResource Value}" />
</localControls:DetailRegion>
...可以根据屏幕宽度呈现为具有两列的网格或堆栈面板。
我并不要求完整的解决方案,我只需要教程来帮助我开始。
I want to create a custom control named DetailRegion that accepts a collection of child controls. From there I want layout the controls in a manner of my choosing. For example...
<localControls:DetailRegion>
<TextBlock Text="Occupation:" Style="{StaticResource Label}" />
<TextBlock Text="{Binding Occupation}" Style="{StaticResource Value}" />
</localControls:DetailRegion>
... may be rendered as a grid with two columns or a stack panel depending on screen width.
I'm not asking for a complete solution, I just need tutorial to get me started.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Msdn 也有很好的示例,其中描述了自定义面板的创建。
Msdn have also good sample, where custom panel creation is described.