Resource中ContentControl的内容
我在 RadTileView 中有一个 ContentControl。如果我将一些硬编码文本放入内容属性中,它就可以正常工作。 (下面的代码)
<ContentControl Grid.Row="2" Grid.Column="0" Content="Hello World"></ContentControl>
这有效......如果我将内容放入 UserControl.Resources 部分,我的应用程序将冻结并且不显示任何内容。
<ContentControl Grid.Row="2" Grid.Column="0" Content="{StaticResource TabControlContent}"></ContentControl>
<UserControl.Resources>
<TextBlock x:Key="TabControlContent" Text="hello world"></TextBlock>
</UserControl.Resources>
最终我希望上下文是 RadTabControl..但现在我决定只渲染该文本块。
I have a ContentControl in a RadTileView. If I put in some hard coded text into the content property it works fine. (code below)
<ContentControl Grid.Row="2" Grid.Column="0" Content="Hello World"></ContentControl>
That works...if I put the content into the UserControl.Resources section my application freezes up and displays nothing.
<ContentControl Grid.Row="2" Grid.Column="0" Content="{StaticResource TabControlContent}"></ContentControl>
<UserControl.Resources>
<TextBlock x:Key="TabControlContent" Text="hello world"></TextBlock>
</UserControl.Resources>
Ultimately I would like to have the context be a RadTabControl..but for now Id settle on just having that textblock render.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要将字符串添加到您的 ContentControl 中,您需要添加
到您的 usings 中。然后添加这个
,希望这会有所
帮助。
To get a string into your ContentControl you would, add
to your usings. Then add this
Which would allow
Hope this helps.