一.将up和down按钮放到tbar中,然后选中grid行即可实现上移和下移 var up = new Ext.Action({ text : 'Up', icon : 'up.png',//或者添加样式iconCls disabled : true, handler : function() { var record = grid.getSelectionModel().getSelected(); if (record) { var index = grid.store.indexOf(re
public void Color(){ DataGridRow row1 = (DataGridRow)this.dgSource.ItemContainerGenerator.ContainerFromIndex(i); if (row1 != null) row1.Background = new SolidColorBrush(Colors.Red);} 这里有个坑,初始化时不能变色,必须等datagrid完成渲染后才能进行这种行变色. 因而先把form show 出来之后才执行变色方法
行高度定义 TableView->OptionView->dataRowHieght 即可设置行高度 自动调整行宽 1.选中cxgridview,在属性中找OptionsView--->ColumAutoWidth,把这个属性设为True; 2.在adoquery的open之后加上如下代码即可 for i := 0 to cxGridView1.ColumnCount - 1 do begin cxGridView1.Columns[i].ApplyBestFit(); end;