WPF 使用Propereties:Resources.resx里面的资源
<Window x:Class="Wpf180706.Window7"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:prop="clr-namespace:Wpf180706.Properties"
Title="Window7" Height="300" Width="300">
<Grid>
<StackPanel>
<TextBlock Text="{x:Static prop:Resources.UserName}" ></TextBlock>
</StackPanel>
</Grid>
</Window>