93 lines
4.1 KiB
C#
93 lines
4.1 KiB
C#
namespace UI.Framework.Controls
|
|
{
|
|
partial class GridPageControl
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Component Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.DataView = new DevExpress.XtraGrid.GridControl();
|
|
this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
|
|
this.DataPage = new UI.Framework.Controls.PageControl();
|
|
((System.ComponentModel.ISupportInitialize)(this.DataView)).BeginInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// DataView
|
|
//
|
|
this.DataView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.DataView.Location = new System.Drawing.Point(0, 0);
|
|
this.DataView.MainView = this.gridView1;
|
|
this.DataView.Name = "DataView";
|
|
this.DataView.Size = new System.Drawing.Size(712, 428);
|
|
this.DataView.TabIndex = 0;
|
|
this.DataView.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
|
|
this.gridView1});
|
|
//
|
|
// gridView1
|
|
//
|
|
this.gridView1.Appearance.HeaderPanel.Options.UseTextOptions = true;
|
|
this.gridView1.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
|
|
this.gridView1.Appearance.Row.Options.UseTextOptions = true;
|
|
this.gridView1.Appearance.Row.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
|
|
this.gridView1.GridControl = this.DataView;
|
|
this.gridView1.IndicatorWidth = 50;
|
|
this.gridView1.Name = "gridView1";
|
|
this.gridView1.OptionsBehavior.Editable = false;
|
|
this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
|
|
this.gridView1.OptionsView.ShowGroupPanel = false;
|
|
this.gridView1.CustomDrawRowIndicator += new DevExpress.XtraGrid.Views.Grid.RowIndicatorCustomDrawEventHandler(this.gridView1_CustomDrawRowIndicator);
|
|
//
|
|
// DataPage
|
|
//
|
|
this.DataPage.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.DataPage.Location = new System.Drawing.Point(0, 434);
|
|
this.DataPage.Name = "DataPage";
|
|
this.DataPage.Size = new System.Drawing.Size(715, 20);
|
|
this.DataPage.TabIndex = 1;
|
|
//
|
|
// GridPageControl
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.Controls.Add(this.DataPage);
|
|
this.Controls.Add(this.DataView);
|
|
this.Name = "GridPageControl";
|
|
this.Size = new System.Drawing.Size(715, 454);
|
|
((System.ComponentModel.ISupportInitialize)(this.DataView)).EndInit();
|
|
((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
private DevExpress.XtraGrid.Views.Grid.GridView gridView1;
|
|
private PageControl DataPage;
|
|
public DevExpress.XtraGrid.GridControl DataView;
|
|
}
|
|
}
|