0
是否可以在XAML中設置一個System:Int32
資源給另一個資源?在XAML中設置一個資源整數爲另一個資源整數?
我想沿着線做一些事情:
<System:Int32 x:Key="SomeValue">9999</System:Int32>
<System:Int32 x:Key="MoreSpecificValue">
<StaticResource ResourceKey="SomeValue"/>
</System:Int32>
您是否想要跨XAML文件共享資源? – Youngjae