画布和绘画。

发布于 2024-12-12 11:27:47 字数 101 浏览 0 评论 0原文

我想向画布添加不同的控件和集合。通过 XAML 绑定它们似乎很困难。我只能绑定一个集合。此外,我想添加从tiles -user 构建的背景图像。那么通过代码还是通过 XAML 处理它更好?

I would like to add to a canvas different controls and collections. It seems hard to bind them via XAML. I can bind only one collection.. Also i would like to add background image built from tiles -user. So is it better to handle it via code or via XAML ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

野侃 2024-12-19 11:27:48

我想向画布添加不同的控件和集合。它
似乎很难通过 XAML 绑定它们。

为此,将画布设置为 ItemsControl.ItemsPanel 并将 ItemsControl.ItemsSource 绑定到您希望画布显示的项目列表。

看这个例子... http://forums.silverlight.net/p/29753/ 96439.aspx

我只能绑定一个集合...

您可以通过我们所说的 CompositeCollection 绑定到多个集合。请参阅页面底部的示例。

http://msdn.microsoft.com/en-我们/library/system.windows.data.compositecollection.aspx

我还想添加从tiles -user构建的背景图像。所以
通过代码还是通过 XAML 处理它更好?

如何将 .PNG 图像设置为 WPF 表单的 TILED 背景图像?

I would like to add to a canvas different controls and collections. It
seems hard to bind them via XAML.

For this set your canvas as the ItemsControl.ItemsPanel and binding ItemsControl.ItemsSource to the list of items that you want your canvas to display.

see this example... http://forums.silverlight.net/p/29753/96439.aspx

I can bind only one collection...

You can bind to mutliple collections through what we call CompositeCollection. see the example in the bottom of the page.

http://msdn.microsoft.com/en-us/library/system.windows.data.compositecollection.aspx

Also i would like to add background image built from tiles -user. So
is it better to handle it via code or via XAML ?

How to set a .PNG image as a TILED background image for my WPF Form?

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