で作成しmycustomItemsPanel
ましたApp.Resources
<Application.Resources>
<ItemsPanelTemplate x:Key="mycustomItemsPanel">
.... Some code here
</ItemsPanelTemplate>
</Application.Resources>
これをこの方法でUIControlに提供します
<.... ItemsPanel="{StaticResource mycustomItemsPanel}" />
しかし、私はこれが次のように提供できることを知りました
<.... ItemsPanel="Binding Source={StaticResource mycustomItemsPanel}}" />
これらの違いは何ですか?