現在、次のようなリソースをコントロールに追加できます。
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でこれを行う方法はありますか?