c# – 如何从资源中获取字符串以在xaml中的WPF资源部分中分配

前端之家收集整理的这篇文章主要介绍了c# – 如何从资源中获取字符串以在xaml中的WPF资源部分中分配前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个XBAP应用程序与以下用户控制:
<UserControl x:Class="XXX.UsersGrid"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Height="Auto" Width="Auto">

        <UserControl.Resources>
            <DataTemplate x:Key="UpArrowUsers">
                <DockPanel>
                    <TextBlock Text="xxUser" x:Name="upArrowUsersHeader" HorizontalAlignment="Center"></TextBlock>
                    <Path x:Name="arrow" StrokeThickness = "1" Fill= "gray" Data= "M 5,10 L 15,10 L 10,5 L 5,10"/>
                </DockPanel>
            </DataTemplate>
    </UserControl>
    ...

现在我想从作为资源嵌入应用程序的resx文件获取字符串“xxUser”
我该如何实现?

解决方法

没有一个答案是接近你想要的.我将首先阅读WPF中的本地化.你会发现,如果你正在使用WPF进行本地化,你将需要在应用程序的每个节点上定义x:Uid.

http://msdn.microsoft.com/en-us/library/ms788718.aspx

猜你在找的C#相关文章