将项目动态添加到 ResourceDictionary。将文件路径转换为资源键

发布于 2024-12-11 17:31:16 字数 325 浏览 0 评论 0原文

我的应用程序中有 ResourceDictionary。我需要将 c# 代码中的一些项目添加到此集合中:

<UserControl.Resources>
    <ResourceDictionary>
    </ResourceDictionary>
</UserControl.Resources>

作为资源的关键,我想使用文件路径。 例如:

c:\somefolder\@#file.txt

将此文件路径转换为有效的 ResourceDictionary 键的最佳方法是什么?

I have ResourceDictionary in my application. I need to add some items from c# code to this collection:

<UserControl.Resources>
    <ResourceDictionary>
    </ResourceDictionary>
</UserControl.Resources>

As key for resources i want to use path to file.
For example:

c:\some folder\@#file.txt

What is the best wey to convert this file path to valid ResourceDictionary Key?

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

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

发布评论

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

评论(2

时光无声 2024-12-18 17:31:16
<UserControl.Resources>
    <ResourceDictionary xmlns:sys="clr-namespace:System;assembly=mscorlib">
        <sys:String x:Key="c:some folder#file.txt">
            whatever
        </sys:String>
    </ResourceDictionary>
</UserControl.Resources>    
<Grid>
    <Label Content="{StaticResource c:some folder#file.txt}" />
</Grid>

删除反斜杠并对特殊字符进行编码。

<UserControl.Resources>
    <ResourceDictionary xmlns:sys="clr-namespace:System;assembly=mscorlib">
        <sys:String x:Key="c:some folder#file.txt">
            whatever
        </sys:String>
    </ResourceDictionary>
</UserControl.Resources>    
<Grid>
    <Label Content="{StaticResource c:some folder#file.txt}" />
</Grid>

Remove back slash and encode special characters.

两人的回忆 2024-12-18 17:31:16

这篇关于 CP 的文章告诉您如何在运行时使用松散的 XAML 文件,还有其他一些。看看吧。

This article on CP tell you how use loose XAML files at Runtime, also some other. Have a look.

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