Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XAML ページで 2 つのリストをバインドしたいと思います。
このようなものを作る可能性はありますか:
this.DataContext = {listOne,ListTwo} ;
どうもありがとう、
よろしくお願いします :)
そのために匿名オブジェクトを使用できます。
this.DataContext = new { One = listOne, Two = listTwo};