0
快速問題,是否有可能綁定到具有編譯綁定的資源鍵,就像使用傳統綁定一樣?編譯綁定(x:綁定)到資源鍵
即 傳統裝訂
<Page.Resources>
<local:DataSource x:Key="Data"/>
<CollectionViewSource x:Name="myColl" Source="{Binding Source={StaticResource Data}, Path=Colleges}" ItemsPath="Campuses" IsSourceGrouped="True"/>
</Page.Resources>
編譯綁定
我嘗試過了,我知道這是行不通的,顯然,這是找物業「數據」頁面,而不是資源上。
<Page.Resources>
<local:DataSource x:Key="Data"/>
<CollectionViewSource x:Name="myColl" Source="{x:Bind Data.Colleges}" ItemsPath="Campuses" IsSourceGrouped="True"/>
</Page.Resources>
那麼還有其他方法嗎?