1. 这个平台差异难免,所以最主要的是根据您的需求去决定怎么实现。也许之前的实现方式并不是最优的。
2. 可以将text 和 value 分开,不过value 也是string
string[] cbstr;
cbstr = new String[] {"One", "Two", "Three"};
string[] strval;
strval = new String[] {"1", "2", "3"};
combo.Items = cbstr;
combo.ItemData = strval;
combo.EditorValue = FarPoint.Win.Spread.CellType.EditorValue.ItemData;
fpSpread1.Sheets[0].Cells[0, 0].CellType = combo;
|