在 Silverlight 中运行时创建 ControlTemplate
我正在编写一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法单独使用 C# 在 Silverlight 中创建 ControlTemplate。与 WPF 不同(您可以在其中设置 VisualTree属性),没有可以设置的属性来指定 ControlTemplate 的“内容”。
您可以将 XAML 定义为字符串,然后在 C# 中动态加载该字符串,如下所述 博客文章。
代码归结为:
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: