namespace Ips.Sps.Ephs { partial class EphCalcForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { components = new System.ComponentModel.Container(); layoutControl1 = new DevExpress.XtraLayout.LayoutControl(); txtEphType = new DevExpress.XtraEditors.ImageComboBoxEdit(); txtSatNum = new DevExpress.XtraEditors.ComboBoxEdit(); btnClear = new DevExpress.XtraEditors.SimpleButton(); grdEphResult = new DevExpress.XtraGrid.GridControl(); bsEphResultList = new BindingSource(components); gvEphResult = new DevExpress.XtraGrid.Views.Grid.GridView(); colSatNum = new DevExpress.XtraGrid.Columns.GridColumn(); colSatNumEdit = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit(); colEphType = new DevExpress.XtraGrid.Columns.GridColumn(); colTime = new DevExpress.XtraGrid.Columns.GridColumn(); colX = new DevExpress.XtraGrid.Columns.GridColumn(); colY = new DevExpress.XtraGrid.Columns.GridColumn(); colZ = new DevExpress.XtraGrid.Columns.GridColumn(); colVx = new DevExpress.XtraGrid.Columns.GridColumn(); colVy = new DevExpress.XtraGrid.Columns.GridColumn(); colVz = new DevExpress.XtraGrid.Columns.GridColumn(); btnCalc = new DevExpress.XtraEditors.SimpleButton(); txtTime = new DevExpress.XtraEditors.DateEdit(); Root = new DevExpress.XtraLayout.LayoutControlGroup(); layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem(); layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem(); layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem(); layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem(); layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem(); layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem(); ((System.ComponentModel.ISupportInitialize)layoutControl1).BeginInit(); layoutControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)txtEphType.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)txtSatNum.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)grdEphResult).BeginInit(); ((System.ComponentModel.ISupportInitialize)bsEphResultList).BeginInit(); ((System.ComponentModel.ISupportInitialize)gvEphResult).BeginInit(); ((System.ComponentModel.ISupportInitialize)colSatNumEdit).BeginInit(); ((System.ComponentModel.ISupportInitialize)txtTime.Properties).BeginInit(); ((System.ComponentModel.ISupportInitialize)txtTime.Properties.CalendarTimeProperties).BeginInit(); ((System.ComponentModel.ISupportInitialize)Root).BeginInit(); ((System.ComponentModel.ISupportInitialize)layoutControlItem2).BeginInit(); ((System.ComponentModel.ISupportInitialize)layoutControlItem3).BeginInit(); ((System.ComponentModel.ISupportInitialize)layoutControlItem4).BeginInit(); ((System.ComponentModel.ISupportInitialize)layoutControlItem5).BeginInit(); ((System.ComponentModel.ISupportInitialize)layoutControlItem6).BeginInit(); ((System.ComponentModel.ISupportInitialize)layoutControlItem1).BeginInit(); SuspendLayout(); // // layoutControl1 // layoutControl1.Controls.Add(txtEphType); layoutControl1.Controls.Add(txtSatNum); layoutControl1.Controls.Add(btnClear); layoutControl1.Controls.Add(grdEphResult); layoutControl1.Controls.Add(btnCalc); layoutControl1.Controls.Add(txtTime); layoutControl1.Dock = DockStyle.Fill; layoutControl1.Location = new Point(0, 0); layoutControl1.Name = "layoutControl1"; layoutControl1.Root = Root; layoutControl1.Size = new Size(1078, 448); layoutControl1.TabIndex = 0; layoutControl1.Text = "layoutControl1"; // // txtEphType // txtEphType.Location = new Point(844, 12); txtEphType.Name = "txtEphType"; txtEphType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); txtEphType.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] { new DevExpress.XtraEditors.Controls.ImageComboBoxItem("全部", null, -1) }); txtEphType.Size = new Size(82, 20); txtEphType.StyleController = layoutControl1; txtEphType.TabIndex = 3; // // txtSatNum // txtSatNum.Location = new Point(72, 12); txtSatNum.Name = "txtSatNum"; txtSatNum.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); txtSatNum.Size = new Size(240, 20); txtSatNum.StyleController = layoutControl1; txtSatNum.TabIndex = 0; txtSatNum.CustomDisplayText += txtSatNum_CustomDisplayText; // // btnClear // btnClear.Location = new Point(1000, 12); btnClear.Name = "btnClear"; btnClear.Size = new Size(66, 22); btnClear.StyleController = layoutControl1; btnClear.TabIndex = 5; btnClear.Text = "清空"; btnClear.Click += btnClear_Click; // // grdEphResult // grdEphResult.DataSource = bsEphResultList; grdEphResult.Location = new Point(12, 38); grdEphResult.MainView = gvEphResult; grdEphResult.Name = "grdEphResult"; grdEphResult.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] { colSatNumEdit }); grdEphResult.Size = new Size(1054, 398); grdEphResult.TabIndex = 6; grdEphResult.UseEmbeddedNavigator = true; grdEphResult.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { gvEphResult }); // // bsEphResultList // bsEphResultList.DataSource = typeof(Library.Entity.EphResult); // // gvEphResult // gvEphResult.Appearance.Row.Options.UseTextOptions = true; gvEphResult.Appearance.Row.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near; gvEphResult.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { colSatNum, colEphType, colTime, colX, colY, colZ, colVx, colVy, colVz }); gvEphResult.GridControl = grdEphResult; gvEphResult.Name = "gvEphResult"; gvEphResult.OptionsBehavior.Editable = false; gvEphResult.OptionsBehavior.ReadOnly = true; gvEphResult.OptionsClipboard.ClipboardMode = DevExpress.Export.ClipboardMode.Formatted; gvEphResult.OptionsSelection.MultiSelect = true; gvEphResult.OptionsView.ShowGroupPanel = false; gvEphResult.CustomColumnDisplayText += gvEphResult_CustomColumnDisplayText; // // colSatNum // colSatNum.ColumnEdit = colSatNumEdit; colSatNum.FieldName = "SatNum"; colSatNum.Name = "colSatNum"; colSatNum.OptionsColumn.AllowEdit = false; colSatNum.OptionsColumn.AllowFocus = false; colSatNum.Visible = true; colSatNum.VisibleIndex = 0; colSatNum.Width = 103; // // colSatNumEdit // colSatNumEdit.AutoHeight = false; colSatNumEdit.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); colSatNumEdit.DisplayMember = "This"; colSatNumEdit.KeyMember = "Oid"; colSatNumEdit.Name = "colSatNumEdit"; colSatNumEdit.ValueMember = "SatNum"; // // colEphType // colEphType.FieldName = "EphType"; colEphType.Name = "colEphType"; colEphType.Visible = true; colEphType.VisibleIndex = 1; colEphType.Width = 55; // // colTime // colTime.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss"; colTime.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime; colTime.FieldName = "Time"; colTime.Name = "colTime"; colTime.OptionsColumn.AllowEdit = false; colTime.OptionsColumn.AllowFocus = false; colTime.Visible = true; colTime.VisibleIndex = 2; colTime.Width = 114; // // colX // colX.FieldName = "X"; colX.Name = "colX"; colX.Visible = true; colX.VisibleIndex = 3; colX.Width = 97; // // colY // colY.FieldName = "Y"; colY.Name = "colY"; colY.Visible = true; colY.VisibleIndex = 4; colY.Width = 77; // // colZ // colZ.FieldName = "Z"; colZ.Name = "colZ"; colZ.Visible = true; colZ.VisibleIndex = 5; colZ.Width = 99; // // colVx // colVx.FieldName = "Vx"; colVx.Name = "colVx"; colVx.Visible = true; colVx.VisibleIndex = 6; colVx.Width = 81; // // colVy // colVy.FieldName = "Vy"; colVy.Name = "colVy"; colVy.Visible = true; colVy.VisibleIndex = 7; colVy.Width = 78; // // colVz // colVz.FieldName = "Vz"; colVz.Name = "colVz"; colVz.Visible = true; colVz.VisibleIndex = 8; colVz.Width = 103; // // btnCalc // btnCalc.Location = new Point(930, 12); btnCalc.Name = "btnCalc"; btnCalc.Size = new Size(66, 22); btnCalc.StyleController = layoutControl1; btnCalc.TabIndex = 4; btnCalc.Text = "计算"; btnCalc.Click += btnCalc_Click; // // txtTime // txtTime.EditValue = null; txtTime.Location = new Point(376, 12); txtTime.Name = "txtTime"; txtTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); txtTime.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); txtTime.Size = new Size(404, 20); txtTime.StyleController = layoutControl1; txtTime.TabIndex = 2; // // Root // Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True; Root.GroupBordersVisible = false; Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { layoutControlItem2, layoutControlItem3, layoutControlItem4, layoutControlItem5, layoutControlItem6, layoutControlItem1 }); Root.Name = "Root"; Root.Size = new Size(1078, 448); Root.TextVisible = false; // // layoutControlItem2 // layoutControlItem2.Control = txtTime; layoutControlItem2.Location = new Point(304, 0); layoutControlItem2.Name = "layoutControlItem2"; layoutControlItem2.Size = new Size(468, 26); layoutControlItem2.Text = "时间"; layoutControlItem2.TextSize = new Size(48, 14); // // layoutControlItem3 // layoutControlItem3.Control = btnCalc; layoutControlItem3.Location = new Point(918, 0); layoutControlItem3.MaxSize = new Size(70, 26); layoutControlItem3.MinSize = new Size(70, 26); layoutControlItem3.Name = "layoutControlItem3"; layoutControlItem3.Size = new Size(70, 26); layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom; layoutControlItem3.TextSize = new Size(0, 0); layoutControlItem3.TextVisible = false; // // layoutControlItem4 // layoutControlItem4.Control = grdEphResult; layoutControlItem4.Location = new Point(0, 26); layoutControlItem4.Name = "layoutControlItem4"; layoutControlItem4.Size = new Size(1058, 402); layoutControlItem4.TextSize = new Size(0, 0); layoutControlItem4.TextVisible = false; // // layoutControlItem5 // layoutControlItem5.Control = btnClear; layoutControlItem5.Location = new Point(988, 0); layoutControlItem5.MaxSize = new Size(70, 26); layoutControlItem5.MinSize = new Size(70, 26); layoutControlItem5.Name = "layoutControlItem5"; layoutControlItem5.Size = new Size(70, 26); layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom; layoutControlItem5.TextSize = new Size(0, 0); layoutControlItem5.TextVisible = false; // // layoutControlItem6 // layoutControlItem6.Control = txtSatNum; layoutControlItem6.Location = new Point(0, 0); layoutControlItem6.MaxSize = new Size(304, 24); layoutControlItem6.MinSize = new Size(304, 24); layoutControlItem6.Name = "layoutControlItem6"; layoutControlItem6.Size = new Size(304, 26); layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom; layoutControlItem6.Text = "卫星编号"; layoutControlItem6.TextSize = new Size(48, 14); // // layoutControlItem1 // layoutControlItem1.Control = txtEphType; layoutControlItem1.Location = new Point(772, 0); layoutControlItem1.MaxSize = new Size(146, 24); layoutControlItem1.MinSize = new Size(146, 24); layoutControlItem1.Name = "layoutControlItem1"; layoutControlItem1.Size = new Size(146, 26); layoutControlItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom; layoutControlItem1.Text = "星历类型"; layoutControlItem1.TextSize = new Size(48, 14); // // EphCalcForm // AutoScaleDimensions = new SizeF(7F, 14F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(1078, 448); Controls.Add(layoutControl1); IconOptions.ShowIcon = false; Name = "EphCalcForm"; ShowInTaskbar = false; StartPosition = FormStartPosition.CenterParent; Text = "星历外推"; Load += EphCalcForm_Load; ((System.ComponentModel.ISupportInitialize)layoutControl1).EndInit(); layoutControl1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)txtEphType.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)txtSatNum.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)grdEphResult).EndInit(); ((System.ComponentModel.ISupportInitialize)bsEphResultList).EndInit(); ((System.ComponentModel.ISupportInitialize)gvEphResult).EndInit(); ((System.ComponentModel.ISupportInitialize)colSatNumEdit).EndInit(); ((System.ComponentModel.ISupportInitialize)txtTime.Properties.CalendarTimeProperties).EndInit(); ((System.ComponentModel.ISupportInitialize)txtTime.Properties).EndInit(); ((System.ComponentModel.ISupportInitialize)Root).EndInit(); ((System.ComponentModel.ISupportInitialize)layoutControlItem2).EndInit(); ((System.ComponentModel.ISupportInitialize)layoutControlItem3).EndInit(); ((System.ComponentModel.ISupportInitialize)layoutControlItem4).EndInit(); ((System.ComponentModel.ISupportInitialize)layoutControlItem5).EndInit(); ((System.ComponentModel.ISupportInitialize)layoutControlItem6).EndInit(); ((System.ComponentModel.ISupportInitialize)layoutControlItem1).EndInit(); ResumeLayout(false); } #endregion private DevExpress.XtraLayout.LayoutControl layoutControl1; private DevExpress.XtraGrid.GridControl grdEphResult; private DevExpress.XtraGrid.Views.Grid.GridView gvEphResult; private DevExpress.XtraEditors.SimpleButton btnCalc; private DevExpress.XtraEditors.DateEdit txtTime; private DevExpress.XtraLayout.LayoutControlGroup Root; private DevExpress.XtraLayout.LayoutControlItem layoutControlItem2; private DevExpress.XtraLayout.LayoutControlItem layoutControlItem3; private DevExpress.XtraLayout.LayoutControlItem layoutControlItem4; private BindingSource bsEphResultList; private DevExpress.XtraGrid.Columns.GridColumn colSatNum; private DevExpress.XtraGrid.Columns.GridColumn colTime; private DevExpress.XtraGrid.Columns.GridColumn colX; private DevExpress.XtraGrid.Columns.GridColumn colY; private DevExpress.XtraGrid.Columns.GridColumn colZ; private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit colSatNumEdit; private DevExpress.XtraEditors.SimpleButton btnClear; private DevExpress.XtraLayout.LayoutControlItem layoutControlItem5; private DevExpress.XtraEditors.ComboBoxEdit txtSatNum; private DevExpress.XtraLayout.LayoutControlItem layoutControlItem6; private DevExpress.XtraGrid.Columns.GridColumn colEphType; private DevExpress.XtraEditors.ImageComboBoxEdit txtEphType; private DevExpress.XtraLayout.LayoutControlItem layoutControlItem1; private DevExpress.XtraGrid.Columns.GridColumn colVx; private DevExpress.XtraGrid.Columns.GridColumn colVy; private DevExpress.XtraGrid.Columns.GridColumn colVz; } }