我正在使用工具包:CodePlex中的DataGrid。如何在代碼中設置DataGridTextColumn的綁定?
我在代碼中生成列。
如何在代碼中設置相當於{Binding FirstName}?
或者,我怎樣才能設置值,這就是我需要做的,不一定綁定它。我只想從我的模型屬性中的數據網格單元格中的值。
DataGridTextColumn dgtc = new DataGridTextColumn();
dgtc.Header = smartFormField.Label;
dgtc.Binding = BindingBase.Path = "FirstName"; //PSEUDO-CODE
dgtc.CellValue= "Jim"; //PSEUDO-CODE
CodePlexDataGrid.Columns.Add(dgtc);