| | |
| | | using System.Net; |
| | | using System.Text; |
| | | using System.Windows.Forms; |
| | | using DevExpress.Utils.Text.Internal; |
| | | using DevExpress.XtraBars; |
| | | using DevExpress.XtraEditors; |
| | | using DevExpress.XtraGrid; |
| | | using DevExpress.XtraGrid.Columns; |
| | | using DevExpress.XtraGrid.Views.Grid; |
| | | using DevExpress.XtraLayout; |
| | | using Gs.DevApp.DevFrm.Rpt; |
| | |
| | | private void BtnLayout_ItemClick(object sender, ItemClickEventArgs ee) |
| | | { |
| | | Form parentForm = this.Parent as Form; |
| | | if (parentForm == null) |
| | | parentForm = this.Parent.Parent as Form; |
| | | string _formNamespace = parentForm.GetType().FullName; |
| | | if (parentForm != null) |
| | | { |
| | |
| | | { |
| | | string _gvColName = a["gvColName"].ToString(); |
| | | string _sqlField = a["sqlField"].ToString(); |
| | | string _sqlFieldType = a["sqlFieldType"].ToString(); |
| | | var column = gv1.Columns.Cast<DevExpress.XtraGrid.Columns.GridColumn>() |
| | | .FirstOrDefault(c => c.Name == _gvColName); |
| | | if (column != null) |
| | | { |
| | | column.Tag = _sqlField; |
| | | column.UnboundExpression = _sqlFieldType; |
| | | } |
| | | } |
| | | } |