Resource中ContentControl的内容

发布于 2024-10-19 01:56:16 字数 618 浏览 1 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(1

灯角 2024-10-26 01:56:16

要将字符串添加到您的 ContentControl 中,您需要添加

xmlns:sys="clr-namespace:System;assembly=mscorlib"

到您的 usings 中。然后添加这个

<UserControl.Resources>
        <sys:String x:Key="SingleString">Hello World</sys:String>
</UserControl.Resources>

,希望这会有所

<ContentControl Content="{Binding Source={StaticResource SingleString}}"/>

帮助。

To get a string into your ContentControl you would, add

xmlns:sys="clr-namespace:System;assembly=mscorlib"

to your usings. Then add this

<UserControl.Resources>
        <sys:String x:Key="SingleString">Hello World</sys:String>
</UserControl.Resources>

Which would allow

<ContentControl Content="{Binding Source={StaticResource SingleString}}"/>

Hope this helps.

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