在 Silverlight 中运行时创建 ControlTemplate

发布于 2024-11-26 10:57:41 字数 132 浏览 0 评论 0原文

我正在编写一个 Silverlight 应用程序,它要求我在运行时动态创建 ControlTemplate。我发现的大多数解决方案都涉及为每个案例创建一个新模板,但我有太多案例无法做到这一点。如何在 C# 中创建新的 ControlTemplate?

I'm writing a Silverlight application that requires me to dynamically create a ControlTemplate at runtime. Most of the solutions I've found involve creating a new template for each case, but I have far too many cases to do this. How would I create a new ControlTemplate in C#?

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

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

发布评论

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

评论(1

无声静候 2024-12-03 10:57:41

您无法单独使用 C# 在 Silverlight 中创建 ControlTemplate。与 WPF 不同(您可以在其中设置 VisualTree属性),没有可以设置的属性来指定 ControlTemplate 的“内容”。

您可以将 XAML 定义为字符串,然后在 C# 中动态加载该字符串,如下所述 博客文章

代码归结为:

var template = (ControlTemplate)XamlReader.Load("<ControlTemplate " +                 
       " xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"" +
       " xmlns:x=\"http://schemas.microsoft.com/winfx/2006/xaml\">" +
       " content here " +
       "</ControlTemplate>");

You cannot create a ControlTemplate in Silverlight in C# alone. Unlike WPF (where you can set the VisualTree property), there is no property you can set that specifies the "content" of the ControlTemplate.

You can define your XAML as a string, and then load that dynamically in C# as explained by this blog post.

The code boils down to:

var template = (ControlTemplate)XamlReader.Load("<ControlTemplate " +                 
       " xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"" +
       " xmlns:x=\"http://schemas.microsoft.com/winfx/2006/xaml\">" +
       " content here " +
       "</ControlTemplate>");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文