0
我在幾個頁面上使用Microsoft的AdControl ...但爲了簡化它,我想存儲ApplicationId一次並將其作爲資源讀取。我可以將字符串存儲在<Application.Resources>中並綁定到它嗎?
難道可以在App.xaml中使用,然後在控件中設置綁定嗎?但是如何?
我在幾個頁面上使用Microsoft的AdControl ...但爲了簡化它,我想存儲ApplicationId一次並將其作爲資源讀取。我可以將字符串存儲在<Application.Resources>中並綁定到它嗎?
難道可以在App.xaml中使用,然後在控件中設置綁定嗎?但是如何?
使用"{StaticResource name}"
就像你會與<Page.Resources>
要存儲資源,創建<ResourceDictionary.MergedDictionaries>
新<ResourceDictionary>
,把你的資源在。
例如:
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<!--
Styles that define common aspects of the platform look and feel
Required by Visual Studio project and item templates
-->
<ResourceDictionary Source="Common/StandardStyles.xaml"/>
<ResourceDictionary>
<x:String x:Key="Foo">Bar</x:String>
</ResourceDictionary>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>