我创建了mycustomItemsPanel
一个App.Resources
<Application.Resources>
<ItemsPanelTemplate x:Key="mycustomItemsPanel">
.... Some code here
</ItemsPanelTemplate>
</Application.Resources>
并以这种方式将其提供给 UIControl
<.... ItemsPanel="{StaticResource mycustomItemsPanel}" />
但我开始知道这可以提供为
<.... ItemsPanel="Binding Source={StaticResource mycustomItemsPanel}}" />
这些有什么区别?