目前,我可以添加資源控制類似下面的內容控制:如何將資源添加到與XAML,類似於ctrl.Resources.Add()
Button b = new Button();
b.Resources.Add("item", currentItem);
我想要做的這與XAML。我試過類似
<Button Content="Timers Overview" Name="btnTimerOverview">
<Button.Resources>
<ResourceDictionary>
<!-- not sure what to add here, or if this is even correct -->
<!-- I'd like to add something like a <string, string> mapping -->
<!-- like name="items" value="I am the current item." -->
</ResourceDictionary>
</Button.Resources>
</Button>
但我沒有得到任何進一步的比這。有沒有辦法在XAML中做到這一點?
什麼是你想用資源來實現呢? – 2012-07-12 11:23:39
基本上我試圖將一個值與可以映射到系統外部的另一個配置文件的控件相關聯。當控件加載時,我可以讀取作爲資源存儲的該值,並根據該值從外部配置中獲取配置。 – binncheol 2012-07-12 11:25:38