Silverlight:如何设计自定义布局控件?

发布于 2024-12-12 10:01:06 字数 394 浏览 0 评论 0原文

我想创建一个名为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦归所梦 2024-12-19 10:01:06

Msdn 也有很好的示例,其中描述了自定义面板的创建。

Msdn have also good sample, where custom panel creation is described.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文