资源描述:
《关於gridex的操作》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、關於GridEx的操作(一)1.關於GridEx的一些設置。想在網上找關於GridEx的介紹文檔,都沒有找到有價值的東西。只能自己慢慢摸索。現在把自己的一些方法帖出來,供大家一起探討。(我用VS2008C#+MySql開發。假設表products(productKey,Productname,ProductID..)添加一個資料集命名為productDataSet,添加一個數據表名為products(productKey,productName,ProductID..)這樣方便綁定。 (1)GridexCo
2、ntrol設置:datasource=productDataSet;Datamember=products;//設置要綁定的數據源GroupByBox:False,是否顯示分組box自定的樣式:VisUalStyle=office2007;Office2007ColorScheme=Custom;Office2007CustomColor=顔色(如:blue);AlllowEdit:是否應許編輯。AllowColumnDrag:運行時是否可以拖拉COlumn.RowHeaders:是否顯示表格行頭;Reco
3、rdNavigator:是否有紀錄導航(相當于分頁).View:設置顯示的樣子tableView,CardView,SimpleCard;SaveSetting:是否保存設置,true可以保存樣式,但是,你在GridExCell中輸入的東西保存時不能提交;false:gridEx.DataUpdate可以更新 (2)RootTable的Column屬性設置:<以DataTime類型為例>Caption:Column的名稱;headerAlign:行頭的排列方式;TextAlign:COl
4、umn內容的排列方式Trimming:內容超出是否省略;WordWarp:是否自動換行,要設置maxLines才可以;如MaxLines=50,則超出50自動換行;FormatString:如yyyy-MM-dd,時間顯示樣式為2009-10-10;editType:textbox,combo,checkbox..如果edittype=noedit;則運行時候不可以編輯;即使AllowEdit=true;如果設置為DrawDownList,在裏設置haseValueList=
5、true;則可以在ValueList頁面設置DrawDownList的值;datatypecode:設置數據類型,Key:字段名;<資料>boundMode:設置綁定模式bound;unbound,unBoundFetch;datamember:設置綁定的字段gridEx功能很強大,對於ColumnSet,childTable,drawdowns的設置還不很清楚。。希望大家一起探討;第一次寫東西,可能表述的不好,請諒解。1.綁定數據;仍然以prodcutDataSet的products表為例.
6、新建grdEXProduct;按照(一)設置GridEx樣式;grdEXProduct.DataSource=productDataset;Datamenber=products;sqlString="Select*fromproducts";DBHelper.ExecuteDataSet(SqlString,dataSetSuppliers1,"products");//DBHelper是我自己參考網上的例子寫的一個數據操作類;//支持MsSql,MYSql,OleDb,odbc,Oracle等; 2.新
7、增:datarowrow=productDataset.products.Rows.newrow();row["ProductKey"]="-1";row["ProductID"]="sss";productDataset.products.Rows.addRow(row);3:刪除:datarowrow=productDataset.products.Rows[Gridex1.getRow().rowindex];productDataset.products.Rows.remove(row)4.保存數據
8、grdEXProduct.UpdateData();//很重要;否則,你輸入的東西不能保存)foreach(DataRowrowinproductDataset.products.Rows) { if(row.RowState==DataRowState.Modified) { SqlString="Updateproductssetproducts.supplygoodsK