我是WPF的新手,並且遇到了一個問題。我正在使用DataGrid
,其中行是固定的(只有3行),但列可以在運行時添加。WPF DataGrid Dymanic Column binding
Row 1 :- Stock Name
Row 2 :- Current Price
Row 3 :- Old Price
並且第2行和第3行將每秒更新爲runtime
。我有類,如下: -
class Stock
{
String name;
double currentPrice;
double oldPrice;
}
class StockCollaction
{
List<Stock> list = new List<Stock>();
public void addStock(Stock stock)
{
list.add(stock);
}
public void update()
{
....
}
.....
}
我想創建DataGrid
像下面(其中每列需要與模型結合,而不是行): -
請指導我如何我可以做到這一點,任何具體的鏈接將提供很大的幫助,我想我必須使用MVVM
。
這確實不適合與內置'DataGrid'的設計。一些第三方網格可能支持這樣的「倒轉」軸。關於我的頭頂,我認爲DevExpress網格確實如此。 – 2014-10-20 13:25:13