1
A
回答
1
我不能想出複雜的東西,但你可以試試這個簡單的黑客:旋轉網格的頭部和單元的內容。誰知道,也許這就是你正在尋找的:)。
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Grid>
<ListView>
<ListView.LayoutTransform>
<RotateTransform Angle="-90"/>
</ListView.LayoutTransform>
<ListView.View>
<GridView>
<GridViewColumn Header="First">
<GridViewColumn.CellTemplate>
<DataTemplate>
<ContentPresenter Content="{Binding}">
<ContentPresenter.LayoutTransform>
<RotateTransform Angle="90"/>
</ContentPresenter.LayoutTransform>
</ContentPresenter>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
</GridView>
</ListView.View>
<TextBlock Text="Some Data"/>
<TextBlock Text="More Data"/>
</ListView>
</Grid>
</Page>
+0
謝謝。 讓我試試..感謝Anwaka – Ershad 2009-09-26 10:10:27
相關問題
- 1. WPF:如何滾動ListView控件水平?
- 2. 如何在XAML中水平顯示Listview項目?
- 3. 水平滾動不顯示在WrapPanel WPF
- 4. 如何在Sapui5中水平顯示tile?
- 5. 如何在IntelliJ中顯示水平線?
- 6. 如何顯示水平
- 7. 如何水平顯示「div」?
- 8. 如何在Android中製作水平ListView?
- 9. 如何在ListView中繪製水平線?
- 10. ListBox顯示水平圖像WPF
- 11. WPF DataGrid水平滾動條不顯示
- 12. 如何使WPF ListView項目水平重複,如水平滾動條?
- 13. 如何Rtl水平ListView?
- 14. Listview水平垂直線visibitly WPF
- 15. WPF - 將圖像水平綁定到ListView
- 16. 在水平佈局中顯示listview的問題?
- 17. WPF:如何獲取Radibuttons作爲ToggleButtons的水平行顯示
- 18. ListBox將不會在多列中水平顯示數據WPF
- 19. 水平的ListView
- 20. android水平listview
- 21. 水平的ListView
- 22. 水平顯示PopupMenuItem
- 23. 如何使WPF ListView項目水平和垂直重複?
- 24. CSS水平列表不顯示在Chrome瀏覽器中的水平在Firefox瀏覽器上顯示爲水平
- 25. 如何使工具提示在水平表中正確顯示?
- 26. 如何水平顯示MYSQL COUNT
- 27. 如何顯示css水平菜單?
- 28. 如何顯示水平滾動條
- 29. 如何顯示垂直而非水平
- 30. 如何水平顯示圖像
主持人關注的標誌是行政支持,而不是獲得緊急問題的答案。 – 2009-09-25 14:08:14