2011-08-10 92 views
3

C#,Visual Studio 2010中,Windows 7的C#,屬性使用字符串

當您設置圖像WPF控件圖像可以specifify源的圖像這樣

/MyTest;component/images/Misc/bg.jpg 

但你如何用字符串做,我有一些字符串資源,例如, strings.resx,strings.sv-Se.resx等等,並且當 指定文本到一個按鈕時,要使用這個「字符串概念」。

我應該在屬性(或窗口的XAML文件)中編寫回收字符串?

我已經試過

/MyTest;component/strings.File 

我:​​

但似乎沒有任何工作。

+0

取決於你想要達到(本地化?),[這](HTTP什麼://計算器.com/questions/665764/how-to-fetch-string-from-resource-to-assign-in -wpf-resource-section-in-xaml)也許你在找什麼或者這個問題甚至是重複的。 –

回答

2

設置的resx文件的訪問說明符是public

<Window x:Class="WpfApplication1.MainWindow" 
     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
     xmlns:prop="clr-namespace:WpfApplication1.Properties" 
     Title="MainWindow" Height="350" Width="525"> 
    <Grid> 
     <TextBox Text="{x:Static prop:Resources.String1}"/> 


    </Grid> 
</Window> 

refrence:訪問字符串從resx file

+0

嗨 非常感謝,這做的伎倆,您的建議也導致我到這個網站 http://gargmanoj.wordpress.com/2009/03/18/accessing-strings-from-resource-file-in -xaml-markup/ Regards –