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.
コントロールを項目としてListView挿入したい(たとえば、3 番目の列) があります。これを行うのに役立つExpander関数/メソッドは何ですか?ListView
ListView
Expander
次のように ItemTemplate を変更できます。
<ListView> <ListView.ItemTemplate> <DataTemplate> <Expander Header="{Binding Title}"> <TextBlock Text="{Binding Description}" /> </Expander> </DataTemplate> </ListView.ItemTemplate> </ListView>