0
在我的App.xaml我有這個組x:字符串值從C#
<Application.Resources>
<!-- Application-specific resources -->
<x:String x:Key="AppName">My Application</x:String>
</Application.Resources>
但實際上,我已經把它在我的不斷代碼例子是這樣的。
public const string AppName = "Test App";
我可以將AppName從app.xaml設置爲該常量嗎?我知道更簡單的編輯app.xaml。但我有更多的情況。
如果究竟是不是一個常量?所以我需要將其改爲靜態。我只是在我的應用程序中更改該AppName一次... – albilaga
我必須對你試圖做的事情做一些猜測。 Application.Resources通常用於定義Xaml應用程序中的背景。我更新我的答案,涵蓋如何在資源中存儲字符串並在代碼中使用它們 – n00b
我知道如何使用resx。我的意思是app.xaml x:string如何從它後面的C#代碼中獲取值?因爲在app.xaml中我無法綁定它 – albilaga