コード例 #1
0
        private void setSnaptext()
        {
            string sfile = Application.StartupPath + @"\snap.text";

            DevExpress.XtraEditors.CheckButton ckbtn = new DevExpress.XtraEditors.CheckButton();
            string stype = "";

            for (int i = 0; i < panel1.Controls.Count; i++)
            {
                try
                {
                    ckbtn = (DevExpress.XtraEditors.CheckButton)panel1.Controls[i];
                    if (ckbtn.Checked)
                    {
                        if (stype == "")
                        {
                            stype = ckbtn.Tag.ToString();
                        }
                        else
                        {
                            stype += "|" + ckbtn.Tag.ToString();
                        }
                    }
                }
                catch
                {
                    continue;
                }
            }
            stype = ckBtnOpenBZ.Checked.ToString().ToLower() + "$" + stype;
            System.IO.File.WriteAllText(sfile, stype);
        }
コード例 #2
0
        private void tabButtons_TextChanged(object sender, EventArgs e)
        {
            DevExpress.XtraEditors.CheckButton button = (DevExpress.XtraEditors.CheckButton)sender;
            Size size = button.CalcBestSize();

            size.Width  = Math.Max(size.Width, button.Width);
            size.Height = button.Height;
            button.Size = size;
        }
コード例 #3
0
        private void setsnap()
        {
            esriSnappingType snaptype = new esriSnappingType();

            //snaptype=(esriSnappingType)((int)esriSnappingType.esriSnappingTypePoint + (int)esriSnappingType.esriSnappingTypeEdge + (int)esriSnappingType.esriSnappingTypeEndpoint + (int)esriSnappingType.esriSnappingTypeMidpoint + (int)esriSnappingType.esriSnappingTypeIntersection + (int)esriSnappingType.esriSnappingTypeVertex + (int)esriSnappingType.esriSnappingTypeTangent);
            //1点  8边线  2端点   16中点    32交点    4折点   64切线
            if (ckBtnOpenBZ.Checked == false)
            {
                return;
            }
            int type = 0;

            DevExpress.XtraEditors.CheckButton ckbtn = new DevExpress.XtraEditors.CheckButton();
            for (int i = 0; i < panel1.Controls.Count; i++)
            {
                try
                {
                    ckbtn = (DevExpress.XtraEditors.CheckButton)panel1.Controls[i];
                    if (ckbtn.Checked)
                    {
                        type += Convert.ToInt32(ckbtn.Tag);
                    }
                }
                catch
                {
                    continue;
                }
            }
            setSnaptext();
            snaptype = (esriSnappingType)type;
            GraphicEdit.SnapSetting.m_hookHelper      = new HookHelperClass();
            GraphicEdit.SnapSetting.m_hookHelper.Hook = m_axmap.Object;
            GraphicEdit.SnapSetting.snappingType      = snaptype;
            GraphicEdit.SnapSetting.m_bStartSnap      = true;
            GraphicEdit.SnapSetting.StartSnappingEnv();
        }
コード例 #4
0
        private void getsnaptext()
        {
            string sfile = Application.StartupPath + @"\snap.text";

            if (System.IO.File.Exists(sfile))
            {
                string   stype  = System.IO.File.ReadAllText(sfile);
                string   ck     = stype.Split('$')[0];
                string   type   = stype.Split('$')[1];
                string[] cktype = type.Split('|');
                DevExpress.XtraEditors.CheckButton ckbtn = new DevExpress.XtraEditors.CheckButton();
                for (int i = 0; i < panel1.Controls.Count; i++)
                {
                    try
                    {
                        ckbtn = (DevExpress.XtraEditors.CheckButton)panel1.Controls[i];
                        for (int j = 0; j < cktype.Length; j++)
                        {
                            if (ckbtn.Tag.ToString().Equals(cktype[j]))
                            {
                                ckbtn.Checked = true;
                            }
                        }
                    }
                    catch
                    {
                        continue;
                    }
                }
                if (ck.Equals("true"))
                {
                    ckBtnOpenBZ.Checked = true;
                }
            }
            try
            {
                DataSet ds = new DataSet();
                ds.ReadXml(Application.StartupPath + @"\gis.xml");
                DataTable dt = ds.Tables[0];
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    try
                    {
                        string name  = dt.Rows[i]["name"].ToString();
                        string value = dt.Rows[i]["value"].ToString();
                        string param = dt.Rows[i]["params"].ToString();
                        if (name.Equals("Scale"))
                        {
                            m_axmap.MapScale  = Convert.ToDouble(value);
                            toolLabelBLC.Text = value;
                        }
                        if (name.Equals("ckScale"))
                        {
                            m_axmap.ReferenceScale = Convert.ToDouble(value);
                            if (value.Equals("0"))
                            {
                                cbBoxCKBLC.Text = "无";
                            }
                            else
                            {
                                cbBoxCKBLC.Text = value;
                            }
                        }
                        if (name.Equals("Rotation"))
                        {
                            m_axmap.Rotation = Convert.ToDouble(value);
                        }
                        if (name.Equals("extent"))
                        {
                            string[] extent = value.Split(',');
                            ESRI.ArcGIS.Geometry.IEnvelope pEnvelop = new ESRI.ArcGIS.Geometry.EnvelopeClass();
                            pEnvelop.XMax  = Convert.ToDouble(extent[0]);
                            pEnvelop.XMin  = Convert.ToDouble(extent[1]);
                            pEnvelop.YMax  = Convert.ToDouble(extent[2]);
                            pEnvelop.YMin  = Convert.ToDouble(extent[3]);
                            m_axmap.Extent = pEnvelop;
                        }
                        if (name.Equals("layer"))
                        {
                            ILayer pLayer = GetLayerByName(m_axmap.Map, value);
                            if (param.ToLower().Equals("true"))
                            {
                                pLayer.Visible = true;
                            }
                            else
                            {
                                pLayer.Visible = false;
                            }
                        }
                    }
                    catch { }
                }
            }
            catch { }
            m_axmap.Refresh();
        }
コード例 #5
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject6 = new DevExpress.Utils.SerializableAppearanceObject();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSetPlaneParam));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject7 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject8 = new DevExpress.Utils.SerializableAppearanceObject();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.spinEdit4 = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.spinEdit3 = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.comboBoxEdit3 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.comboBoxEdit2 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.buttonEdit1 = new DevExpress.XtraEditors.ButtonEdit();
     this.spinEdit2 = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
     this.checkButton1 = new DevExpress.XtraEditors.CheckButton();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.comboBoxEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // groupControl1
     //
     this.groupControl1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.groupControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.groupControl1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.groupControl1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.groupControl1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.groupControl1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.groupControl1.AppearanceCaption.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.groupControl1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.groupControl1.AppearanceCaption.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.groupControl1.AppearanceCaption.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.groupControl1.AppearanceCaption.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.groupControl1.AppearanceCaption.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.groupControl1.CaptionImageLocation = DevExpress.Utils.GroupElementLocation.Default;
     this.groupControl1.CaptionLocation = DevExpress.Utils.Locations.Default;
     this.groupControl1.ContentImageAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.groupControl1.Controls.Add(this.spinEdit4);
     this.groupControl1.Controls.Add(this.labelControl11);
     this.groupControl1.Controls.Add(this.labelControl10);
     this.groupControl1.Controls.Add(this.labelControl9);
     this.groupControl1.Controls.Add(this.spinEdit3);
     this.groupControl1.Controls.Add(this.labelControl8);
     this.groupControl1.Controls.Add(this.labelControl7);
     this.groupControl1.Controls.Add(this.comboBoxEdit3);
     this.groupControl1.Controls.Add(this.comboBoxEdit2);
     this.groupControl1.Controls.Add(this.buttonEdit1);
     this.groupControl1.Controls.Add(this.spinEdit2);
     this.groupControl1.Controls.Add(this.labelControl6);
     this.groupControl1.Controls.Add(this.simpleButton5);
     this.groupControl1.Controls.Add(this.labelControl5);
     this.groupControl1.Controls.Add(this.simpleButton4);
     this.groupControl1.Controls.Add(this.simpleButton3);
     this.groupControl1.Controls.Add(this.checkButton1);
     this.groupControl1.Controls.Add(this.labelControl4);
     this.groupControl1.Controls.Add(this.textBox1);
     this.groupControl1.Controls.Add(this.labelControl3);
     this.groupControl1.Controls.Add(this.comboBoxEdit1);
     this.groupControl1.Controls.Add(this.spinEdit1);
     this.groupControl1.Controls.Add(this.textEdit2);
     this.groupControl1.Controls.Add(this.labelControl2);
     this.groupControl1.Controls.Add(this.labelControl1);
     this.groupControl1.Controls.Add(this.simpleButton2);
     this.groupControl1.Controls.Add(this.simpleButton1);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 0);
     this.groupControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(289, 266);
     this.groupControl1.TabIndex = 0;
     this.groupControl1.Text = "飞行参数";
     //
     // spinEdit4
     //
     this.spinEdit4.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit4.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.spinEdit4.Location = new System.Drawing.Point(57, 147);
     this.spinEdit4.Name = "spinEdit4";
     this.spinEdit4.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit4.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit4.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit4.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject1.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject1.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject1.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject1.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject1.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit4.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.spinEdit4.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit4.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit4.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit4.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit4.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit4.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit4.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit4.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit4.Size = new System.Drawing.Size(49, 21);
     this.spinEdit4.TabIndex = 27;
     this.spinEdit4.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl11
     //
     this.labelControl11.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl11.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl11.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl11.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl11.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl11.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl11.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl11.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl11.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl11.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl11.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl11.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl11.Location = new System.Drawing.Point(140, 31);
     this.labelControl11.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(29, 14);
     this.labelControl11.TabIndex = 26;
     this.labelControl11.Text = "米/秒";
     this.labelControl11.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl10
     //
     this.labelControl10.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl10.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl10.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl10.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl10.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl10.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl10.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl10.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl10.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl10.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl10.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl10.Location = new System.Drawing.Point(140, 58);
     this.labelControl10.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(29, 14);
     this.labelControl10.TabIndex = 25;
     this.labelControl10.Text = "米/秒";
     this.labelControl10.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl9
     //
     this.labelControl9.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl9.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl9.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl9.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl9.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl9.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl9.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl9.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl9.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl9.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl9.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl9.Location = new System.Drawing.Point(4, 92);
     this.labelControl9.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(52, 14);
     this.labelControl9.TabIndex = 24;
     this.labelControl9.Text = "动态类型:";
     this.labelControl9.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // spinEdit3
     //
     this.spinEdit3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit3.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.spinEdit3.Location = new System.Drawing.Point(57, 172);
     this.spinEdit3.Name = "spinEdit3";
     this.spinEdit3.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit3.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit3.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit3.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject2.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject2.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject2.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject2.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject2.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
     this.spinEdit3.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit3.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit3.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit3.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit3.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit3.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit3.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit3.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit3.Size = new System.Drawing.Size(49, 21);
     this.spinEdit3.TabIndex = 23;
     this.spinEdit3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.spinEdit3.EditValueChanged += new System.EventHandler(this.spinEdit3_EditValueChanged);
     //
     // labelControl8
     //
     this.labelControl8.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl8.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl8.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl8.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl8.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl8.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl8.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl8.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl8.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl8.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl8.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl8.Location = new System.Drawing.Point(1, 176);
     this.labelControl8.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(60, 14);
     this.labelControl8.TabIndex = 22;
     this.labelControl8.Text = "模型比例:";
     this.labelControl8.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl7
     //
     this.labelControl7.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl7.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl7.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl7.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl7.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl7.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl7.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl7.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl7.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl7.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl7.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl7.Location = new System.Drawing.Point(4, 123);
     this.labelControl7.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(52, 14);
     this.labelControl7.TabIndex = 21;
     this.labelControl7.Text = "表现类型:";
     this.labelControl7.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // comboBoxEdit3
     //
     this.comboBoxEdit3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit3.Enabled = false;
     this.comboBoxEdit3.Location = new System.Drawing.Point(57, 120);
     this.comboBoxEdit3.Name = "comboBoxEdit3";
     this.comboBoxEdit3.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.comboBoxEdit3.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit3.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceDropDown.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit3.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject3.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject3.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject3.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject3.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject3.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject3.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit3.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)});
     this.comboBoxEdit3.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.comboBoxEdit3.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.comboBoxEdit3.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.comboBoxEdit3.Properties.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Default;
     this.comboBoxEdit3.Properties.Items.AddRange(new object[] {
     "根据地表",
     "客机",
     "直升机"});
     this.comboBoxEdit3.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxEdit3.Properties.PopupResizeMode = DevExpress.XtraEditors.Controls.ResizeMode.Default;
     this.comboBoxEdit3.Properties.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.SingleClick;
     this.comboBoxEdit3.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.comboBoxEdit3.Size = new System.Drawing.Size(100, 21);
     this.comboBoxEdit3.TabIndex = 20;
     this.comboBoxEdit3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.comboBoxEdit3.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit3_SelectedIndexChanged);
     //
     // comboBoxEdit2
     //
     this.comboBoxEdit2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit2.Location = new System.Drawing.Point(58, 89);
     this.comboBoxEdit2.Name = "comboBoxEdit2";
     this.comboBoxEdit2.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.comboBoxEdit2.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit2.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceDropDown.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit2.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject4.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject4.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject4.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject4.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject4.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject4.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)});
     this.comboBoxEdit2.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.comboBoxEdit2.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.comboBoxEdit2.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.comboBoxEdit2.Properties.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Default;
     this.comboBoxEdit2.Properties.Items.AddRange(new object[] {
     "无模型",
     "有模型"});
     this.comboBoxEdit2.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxEdit2.Properties.PopupResizeMode = DevExpress.XtraEditors.Controls.ResizeMode.Default;
     this.comboBoxEdit2.Properties.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.SingleClick;
     this.comboBoxEdit2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.comboBoxEdit2.Size = new System.Drawing.Size(100, 21);
     this.comboBoxEdit2.TabIndex = 19;
     this.comboBoxEdit2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.comboBoxEdit2.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit2_SelectedIndexChanged);
     //
     // buttonEdit1
     //
     this.buttonEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.buttonEdit1.Location = new System.Drawing.Point(165, 120);
     this.buttonEdit1.Name = "buttonEdit1";
     this.buttonEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.buttonEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.buttonEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.buttonEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject5.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject5.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject5.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject5.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject5.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject5.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.buttonEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, true)});
     this.buttonEdit1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.buttonEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.buttonEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.buttonEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.buttonEdit1.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.buttonEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
     this.buttonEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.buttonEdit1.Properties.Click += new System.EventHandler(this.buttonEdit1_Properties_Click);
     this.buttonEdit1.Size = new System.Drawing.Size(100, 21);
     this.buttonEdit1.TabIndex = 18;
     this.buttonEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.buttonEdit1.Visible = false;
     //
     // spinEdit2
     //
     this.spinEdit2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit2.EditValue = new decimal(new int[] {
     30,
     0,
     0,
     0});
     this.spinEdit2.Location = new System.Drawing.Point(58, 55);
     this.spinEdit2.Name = "spinEdit2";
     this.spinEdit2.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit2.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit2.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit2.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject6.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject6.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject6.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject6.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject6.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject6, "", null, null, true)});
     this.spinEdit2.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit2.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit2.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit2.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit2.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit2.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit2.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit2.Size = new System.Drawing.Size(76, 21);
     this.spinEdit2.TabIndex = 17;
     this.spinEdit2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl6
     //
     this.labelControl6.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl6.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl6.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl6.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl6.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl6.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl6.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl6.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl6.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl6.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl6.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl6.Location = new System.Drawing.Point(4, 58);
     this.labelControl6.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(36, 14);
     this.labelControl6.TabIndex = 16;
     this.labelControl6.Text = "速度:";
     this.labelControl6.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // simpleButton5
     //
     this.simpleButton5.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton5.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton5.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton5.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton5.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton5.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton5.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton5.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton5.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton5.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton5.Image")));
     this.simpleButton5.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton5.Location = new System.Drawing.Point(160, 170);
     this.simpleButton5.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton5.Name = "simpleButton5";
     this.simpleButton5.Size = new System.Drawing.Size(24, 23);
     this.simpleButton5.TabIndex = 15;
     this.simpleButton5.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton5.Click += new System.EventHandler(this.simpleButton5_Click);
     //
     // labelControl5
     //
     this.labelControl5.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl5.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl5.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl5.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl5.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl5.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl5.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl5.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl5.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl5.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl5.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl5.Location = new System.Drawing.Point(112, 150);
     this.labelControl5.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(12, 14);
     this.labelControl5.TabIndex = 14;
     this.labelControl5.Text = "米";
     this.labelControl5.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // simpleButton4
     //
     this.simpleButton4.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton4.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton4.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton4.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton4.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton4.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton4.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton4.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton4.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton4.Image")));
     this.simpleButton4.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton4.Location = new System.Drawing.Point(130, 170);
     this.simpleButton4.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton4.Name = "simpleButton4";
     this.simpleButton4.Size = new System.Drawing.Size(24, 23);
     this.simpleButton4.TabIndex = 13;
     this.simpleButton4.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton4.Click += new System.EventHandler(this.simpleButton4_Click);
     //
     // simpleButton3
     //
     this.simpleButton3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton3.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton3.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton3.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton3.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton3.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton3.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton3.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton3.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton3.Location = new System.Drawing.Point(13, 233);
     this.simpleButton3.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton3.Name = "simpleButton3";
     this.simpleButton3.Size = new System.Drawing.Size(49, 23);
     this.simpleButton3.TabIndex = 12;
     this.simpleButton3.Text = "确定";
     this.simpleButton3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton3.Visible = false;
     this.simpleButton3.Click += new System.EventHandler(this.simpleButton3_Click);
     //
     // checkButton1
     //
     this.checkButton1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.checkButton1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.checkButton1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.checkButton1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.checkButton1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.checkButton1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.checkButton1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.checkButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.checkButton1.DialogResult = System.Windows.Forms.DialogResult.None;
     this.checkButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.checkButton1.Location = new System.Drawing.Point(201, 170);
     this.checkButton1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.checkButton1.Name = "checkButton1";
     this.checkButton1.Size = new System.Drawing.Size(75, 23);
     this.checkButton1.TabIndex = 11;
     this.checkButton1.Text = "地下模式";
     this.checkButton1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.checkButton1.CheckedChanged += new System.EventHandler(this.checkButton1_CheckedChanged);
     //
     // labelControl4
     //
     this.labelControl4.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl4.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl4.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl4.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl4.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl4.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl4.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl4.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl4.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl4.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl4.Location = new System.Drawing.Point(116, 213);
     this.labelControl4.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(12, 14);
     this.labelControl4.TabIndex = 10;
     this.labelControl4.Text = "度";
     this.labelControl4.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.labelControl4.Visible = false;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(78, 209);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(32, 22);
     this.textBox1.TabIndex = 9;
     this.textBox1.Text = "-53";
     this.textBox1.Visible = false;
     //
     // labelControl3
     //
     this.labelControl3.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl3.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl3.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl3.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl3.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl3.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl3.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl3.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl3.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl3.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl3.Location = new System.Drawing.Point(12, 213);
     this.labelControl3.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(60, 14);
     this.labelControl3.TabIndex = 8;
     this.labelControl3.Text = "方向角度:";
     this.labelControl3.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.labelControl3.Visible = false;
     //
     // comboBoxEdit1
     //
     this.comboBoxEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit1.EditValue = "米";
     this.comboBoxEdit1.Location = new System.Drawing.Point(231, 28);
     this.comboBoxEdit1.Name = "comboBoxEdit1";
     this.comboBoxEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.comboBoxEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.comboBoxEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceDropDown.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.comboBoxEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject7.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject7.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject7.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject7.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject7.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject7.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.comboBoxEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject7, "", null, null, true)});
     this.comboBoxEdit1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.comboBoxEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.comboBoxEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.comboBoxEdit1.Properties.HighlightedItemStyle = DevExpress.XtraEditors.HighlightStyle.Default;
     this.comboBoxEdit1.Properties.Items.AddRange(new object[] {
     "米",
     "英尺",
     "千米"});
     this.comboBoxEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.comboBoxEdit1.Properties.PopupResizeMode = DevExpress.XtraEditors.Controls.ResizeMode.Default;
     this.comboBoxEdit1.Properties.ShowDropDown = DevExpress.XtraEditors.Controls.ShowDropDown.SingleClick;
     this.comboBoxEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.comboBoxEdit1.Size = new System.Drawing.Size(35, 21);
     this.comboBoxEdit1.TabIndex = 7;
     this.comboBoxEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.comboBoxEdit1.Visible = false;
     //
     // spinEdit1
     //
     this.spinEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit1.EditValue = new decimal(new int[] {
     50,
     0,
     0,
     0});
     this.spinEdit1.Location = new System.Drawing.Point(58, 28);
     this.spinEdit1.Name = "spinEdit1";
     this.spinEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     serializableAppearanceObject8.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject8.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject8.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject8.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject8.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject8.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject8, "", null, null, true)});
     this.spinEdit1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit1.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit1.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit1.Size = new System.Drawing.Size(76, 21);
     this.spinEdit1.TabIndex = 6;
     this.spinEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.spinEdit1.EditValueChanged += new System.EventHandler(this.spinEdit1_EditValueChanged);
     //
     // textEdit2
     //
     this.textEdit2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.textEdit2.EditValue = "80";
     this.textEdit2.Location = new System.Drawing.Point(130, 147);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.textEdit2.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.textEdit2.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.textEdit2.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.textEdit2.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.textEdit2.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.textEdit2.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.textEdit2.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.textEdit2.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.textEdit2.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.textEdit2.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.None;
     this.textEdit2.Size = new System.Drawing.Size(40, 21);
     this.textEdit2.TabIndex = 5;
     this.textEdit2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.textEdit2.Visible = false;
     //
     // labelControl2
     //
     this.labelControl2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl2.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl2.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl2.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl2.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl2.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl2.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl2.Location = new System.Drawing.Point(4, 150);
     this.labelControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(36, 14);
     this.labelControl2.TabIndex = 3;
     this.labelControl2.Text = "高程:";
     this.labelControl2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl1
     //
     this.labelControl1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl1.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl1.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl1.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl1.Location = new System.Drawing.Point(4, 31);
     this.labelControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(60, 14);
     this.labelControl1.TabIndex = 2;
     this.labelControl1.Text = "转弯速度:";
     this.labelControl1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // simpleButton2
     //
     this.simpleButton2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton2.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton2.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton2.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton2.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton2.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton2.Location = new System.Drawing.Point(217, 228);
     this.simpleButton2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(49, 23);
     this.simpleButton2.TabIndex = 1;
     this.simpleButton2.Text = "关闭";
     this.simpleButton2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton1.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton1.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton1.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton1.Location = new System.Drawing.Point(162, 228);
     this.simpleButton1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(49, 23);
     this.simpleButton1.TabIndex = 0;
     this.simpleButton1.Text = "应用";
     this.simpleButton1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // FrmSetPlaneParam
     //
     this.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(289, 266);
     this.Controls.Add(this.groupControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.Name = "FrmSetPlaneParam";
     this.Opacity = 0.8D;
     this.Text = "飞行参数设定";
     this.Load += new System.EventHandler(this.FrmSetPlaneParam_Load);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.buttonEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmBufferAnaylsis));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     this.spinEdit1 = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.Cancel = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton2 = new DevExpress.XtraEditors.CheckButton();
     this.Select = new DevExpress.XtraEditors.CheckButton();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.cbRelative = new DevExpress.XtraEditors.CheckEdit();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.speHeight = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbRelative.Properties)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.speHeight.Properties)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // spinEdit1
     //
     this.spinEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit1.EditValue = new decimal(new int[] {
     50,
     0,
     0,
     0});
     this.spinEdit1.Location = new System.Drawing.Point(66, 15);
     this.spinEdit1.Name = "spinEdit1";
     this.spinEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.spinEdit1.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.spinEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.spinEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     serializableAppearanceObject1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject1.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject1.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject1.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject1.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject1.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.spinEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.spinEdit1.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.spinEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.spinEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.spinEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.spinEdit1.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.spinEdit1.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.spinEdit1.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.spinEdit1.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.spinEdit1.Size = new System.Drawing.Size(66, 21);
     this.spinEdit1.TabIndex = 2;
     this.spinEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl2
     //
     this.labelControl2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl2.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl2.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl2.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl2.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl2.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl2.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl2.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl2.Location = new System.Drawing.Point(137, 18);
     this.labelControl2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(12, 14);
     this.labelControl2.TabIndex = 3;
     this.labelControl2.Text = "米";
     this.labelControl2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // Cancel
     //
     this.Cancel.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.Cancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.Cancel.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.Cancel.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.Cancel.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.Cancel.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.Cancel.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.Cancel.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.Cancel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.Cancel.DialogResult = System.Windows.Forms.DialogResult.None;
     this.Cancel.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.Cancel.Location = new System.Drawing.Point(265, 130);
     this.Cancel.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.Cancel.Name = "Cancel";
     this.Cancel.Size = new System.Drawing.Size(87, 27);
     this.Cancel.TabIndex = 4;
     this.Cancel.Text = "取消";
     this.Cancel.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.Cancel.Click += new System.EventHandler(this.Cancel_Click);
     //
     // simpleButton2
     //
     this.simpleButton2.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.simpleButton2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.simpleButton2.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.simpleButton2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.simpleButton2.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.simpleButton2.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.simpleButton2.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.simpleButton2.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.simpleButton2.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.simpleButton2.DialogResult = System.Windows.Forms.DialogResult.None;
     this.simpleButton2.Enabled = false;
     this.simpleButton2.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton2.Image")));
     this.simpleButton2.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.simpleButton2.Location = new System.Drawing.Point(78, 130);
     this.simpleButton2.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(87, 27);
     this.simpleButton2.TabIndex = 6;
     this.simpleButton2.Text = "画图";
     this.simpleButton2.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.simpleButton2.Visible = false;
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // Select
     //
     this.Select.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.Select.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.Select.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.Select.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.Select.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.Select.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.Select.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.Select.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.Select.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Default;
     this.Select.DialogResult = System.Windows.Forms.DialogResult.None;
     this.Select.Image = ((System.Drawing.Image)(resources.GetObject("Select.Image")));
     this.Select.ImageLocation = DevExpress.XtraEditors.ImageLocation.Default;
     this.Select.Location = new System.Drawing.Point(172, 130);
     this.Select.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.Select.Name = "Select";
     this.Select.Size = new System.Drawing.Size(87, 27);
     this.Select.TabIndex = 5;
     this.Select.Text = "选择模型";
     this.Select.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.Select.Click += new System.EventHandler(this.Select_Click);
     //
     // checkEdit1
     //
     this.checkEdit1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.checkEdit1.EditValue = true;
     this.checkEdit1.Location = new System.Drawing.Point(62, 18);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.checkEdit1.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.checkEdit1.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.checkEdit1.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.checkEdit1.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.checkEdit1.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.checkEdit1.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.checkEdit1.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.checkEdit1.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.checkEdit1.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.checkEdit1.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.checkEdit1.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.checkEdit1.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.checkEdit1.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.checkEdit1.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.checkEdit1.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.checkEdit1.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.checkEdit1.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.checkEdit1.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.checkEdit1.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.checkEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.checkEdit1.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.checkEdit1.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.checkEdit1.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.checkEdit1.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.checkEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.checkEdit1.Properties.Caption = "附在地表";
     this.checkEdit1.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.checkEdit1.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.checkEdit1.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.checkEdit1.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.checkEdit1.Properties.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.InactiveChecked;
     this.checkEdit1.Size = new System.Drawing.Size(70, 19);
     this.checkEdit1.TabIndex = 7;
     this.checkEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.checkEdit1.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // cbRelative
     //
     this.cbRelative.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.cbRelative.Location = new System.Drawing.Point(62, 43);
     this.cbRelative.Name = "cbRelative";
     this.cbRelative.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.cbRelative.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.cbRelative.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.cbRelative.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.cbRelative.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.cbRelative.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.cbRelative.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.cbRelative.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.cbRelative.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.cbRelative.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.cbRelative.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.cbRelative.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.cbRelative.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.cbRelative.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.cbRelative.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.cbRelative.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.cbRelative.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.cbRelative.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.cbRelative.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.cbRelative.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.cbRelative.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.cbRelative.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.cbRelative.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.cbRelative.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.cbRelative.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.cbRelative.Properties.AutoHeight = false;
     this.cbRelative.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.cbRelative.Properties.Caption = "相对地表高";
     this.cbRelative.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.cbRelative.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.cbRelative.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.cbRelative.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.cbRelative.Properties.NullStyle = DevExpress.XtraEditors.Controls.StyleIndeterminate.InactiveChecked;
     this.cbRelative.Size = new System.Drawing.Size(82, 19);
     this.cbRelative.TabIndex = 8;
     this.cbRelative.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     this.cbRelative.CheckedChanged += new System.EventHandler(this.cbRelative_CheckedChanged);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.speHeight);
     this.groupBox1.Controls.Add(this.labelControl1);
     this.groupBox1.Controls.Add(this.checkEdit1);
     this.groupBox1.Controls.Add(this.cbRelative);
     this.groupBox1.Location = new System.Drawing.Point(12, 48);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(338, 73);
     this.groupBox1.TabIndex = 9;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "结果显示";
     //
     // speHeight
     //
     this.speHeight.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.speHeight.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.speHeight.Enabled = false;
     this.speHeight.Location = new System.Drawing.Point(150, 42);
     this.speHeight.Name = "speHeight";
     this.speHeight.Properties.AccessibleRole = System.Windows.Forms.AccessibleRole.Default;
     this.speHeight.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.Default;
     this.speHeight.Properties.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.speHeight.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.speHeight.Properties.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.speHeight.Properties.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.speHeight.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.speHeight.Properties.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.speHeight.Properties.AppearanceDisabled.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.speHeight.Properties.AppearanceDisabled.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.speHeight.Properties.AppearanceDisabled.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.speHeight.Properties.AppearanceDisabled.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.speHeight.Properties.AppearanceDisabled.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.speHeight.Properties.AppearanceDisabled.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.speHeight.Properties.AppearanceFocused.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.speHeight.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.speHeight.Properties.AppearanceFocused.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.speHeight.Properties.AppearanceFocused.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.speHeight.Properties.AppearanceFocused.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.speHeight.Properties.AppearanceFocused.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.speHeight.Properties.AppearanceReadOnly.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.speHeight.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.speHeight.Properties.AppearanceReadOnly.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.speHeight.Properties.AppearanceReadOnly.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.speHeight.Properties.AppearanceReadOnly.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.speHeight.Properties.AppearanceReadOnly.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.speHeight.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     serializableAppearanceObject2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     serializableAppearanceObject2.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     serializableAppearanceObject2.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     serializableAppearanceObject2.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     serializableAppearanceObject2.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     serializableAppearanceObject2.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.speHeight.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
     this.speHeight.Properties.CharacterCasing = System.Windows.Forms.CharacterCasing.Normal;
     this.speHeight.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Buffered;
     this.speHeight.Properties.ExportMode = DevExpress.XtraEditors.Repository.ExportMode.Default;
     this.speHeight.Properties.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.speHeight.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Default;
     this.speHeight.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.speHeight.Properties.SpinStyle = DevExpress.XtraEditors.Controls.SpinStyles.Vertical;
     this.speHeight.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.speHeight.Size = new System.Drawing.Size(66, 21);
     this.speHeight.TabIndex = 2;
     this.speHeight.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // labelControl1
     //
     this.labelControl1.AllowHtmlTextInToolTip = DevExpress.Utils.DefaultBoolean.Default;
     this.labelControl1.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.labelControl1.Appearance.ImageAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.labelControl1.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.labelControl1.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.labelControl1.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.labelControl1.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.Default;
     this.labelControl1.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.None;
     this.labelControl1.LineLocation = DevExpress.XtraEditors.LineLocation.Default;
     this.labelControl1.LineOrientation = DevExpress.XtraEditors.LabelLineOrientation.Default;
     this.labelControl1.Location = new System.Drawing.Point(221, 45);
     this.labelControl1.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(12, 14);
     this.labelControl1.TabIndex = 3;
     this.labelControl1.Text = "米";
     this.labelControl1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.None;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.spinEdit1);
     this.groupBox2.Controls.Add(this.labelControl2);
     this.groupBox2.Location = new System.Drawing.Point(13, 3);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(339, 40);
     this.groupBox2.TabIndex = 10;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "缓冲距离";
     //
     // FrmBufferAnaylsis
     //
     this.Appearance.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
     this.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.Appearance.TextOptions.HotkeyPrefix = DevExpress.Utils.HKeyPrefix.Default;
     this.Appearance.TextOptions.Trimming = DevExpress.Utils.Trimming.Default;
     this.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Default;
     this.Appearance.TextOptions.WordWrap = DevExpress.Utils.WordWrap.Default;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(362, 167);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.simpleButton2);
     this.Controls.Add(this.Select);
     this.Controls.Add(this.Cancel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Skin;
     this.Name = "FrmBufferAnaylsis";
     this.ShowInTaskbar = false;
     this.Text = "缓冲区分析";
     this.TopMost = true;
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FrmBufferAnaylsis_FormClosed);
     this.Load += new System.EventHandler(this.FrmBufferAnaylsis_Load);
     ((System.ComponentModel.ISupportInitialize)(this.spinEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbRelative.Properties)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.speHeight.Properties)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.ResumeLayout(false);
 }
コード例 #7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.ribbonStatusBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.OK = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.cancel = new DevExpress.XtraBars.BarButtonItem();
     this.ribbon = new DevExpress.XtraBars.Ribbon.RibbonControl();
     this.NomenclatureInfoButtonsBar = new DevExpress.XtraBars.Ribbon.RibbonStatusBar();
     this.panelControl = new DevExpress.XtraEditors.PanelControl();
     this.TypeOfShipment = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.Car = new Aramis.AramisSearchLookUpEdit();
     this.Carrier = new Aramis.AramisSearchLookUpEdit();
     this.Driver = new Aramis.AramisSearchLookUpEdit();
     this.Contractor = new Aramis.AramisSearchLookUpEdit();
     this.Date = new DevExpress.XtraEditors.DateEdit();
     this.IncomeNumber = new DevExpress.XtraEditors.TextEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.State = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.label = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.NomenclatureInfo = new DevExpress.XtraGrid.GridControl();
     this.nomenclatureView = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
     this.Info = new DevExpress.XtraEditors.LabelControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.showNomenclature = new DevExpress.XtraEditors.CheckButton();
     this.showTare = new DevExpress.XtraEditors.CheckButton();
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
     this.panelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TypeOfShipment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Car.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Carrier.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Driver.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Contractor.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IncomeNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // ribbonStatusBar
     //
     this.ribbonStatusBar.ItemLinks.Add(this.OK);
     this.ribbonStatusBar.ItemLinks.Add(this.barButtonItem2);
     this.ribbonStatusBar.ItemLinks.Add(this.cancel);
     this.ribbonStatusBar.Location = new System.Drawing.Point(0, 572);
     this.ribbonStatusBar.Name = "ribbonStatusBar";
     this.ribbonStatusBar.Ribbon = this.ribbon;
     this.ribbonStatusBar.Size = new System.Drawing.Size(879, 31);
     //
     // OK
     //
     this.OK.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.OK.Caption = "OK";
     this.OK.Id = 0;
     this.OK.ImageIndex = 0;
     this.OK.Name = "OK";
     this.OK.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.OK_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem2.Caption = "��������";
     this.barButtonItem2.Id = 1;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.Write_ItemClick);
     //
     // cancel
     //
     this.cancel.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.cancel.Caption = "³����";
     this.cancel.Id = 2;
     this.cancel.ImageIndex = 1;
     this.cancel.Name = "cancel";
     this.cancel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.cancel_ItemClick);
     //
     // ribbon
     //
     this.ribbon.ApplicationButtonText = null;
     this.ribbon.ExpandCollapseItem.Id = 0;
     this.ribbon.ExpandCollapseItem.Name = "";
     this.ribbon.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.ribbon.ExpandCollapseItem,
     this.OK,
     this.barButtonItem2,
     this.cancel});
     this.ribbon.Location = new System.Drawing.Point(0, 0);
     this.ribbon.MaxItemId = 18;
     this.ribbon.Name = "ribbon";
     this.ribbon.Size = new System.Drawing.Size(879, 49);
     this.ribbon.StatusBar = this.ribbonStatusBar;
     this.ribbon.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above;
     //
     // NomenclatureInfoButtonsBar
     //
     this.NomenclatureInfoButtonsBar.Dock = System.Windows.Forms.DockStyle.Fill;
     this.NomenclatureInfoButtonsBar.Location = new System.Drawing.Point(0, -4);
     this.NomenclatureInfoButtonsBar.Name = "NomenclatureInfoButtonsBar";
     this.NomenclatureInfoButtonsBar.Ribbon = this.ribbon;
     this.NomenclatureInfoButtonsBar.Size = new System.Drawing.Size(875, 27);
     //
     // panelControl
     //
     this.panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl.Controls.Add(this.TypeOfShipment);
     this.panelControl.Controls.Add(this.labelControl2);
     this.panelControl.Controls.Add(this.Car);
     this.panelControl.Controls.Add(this.Carrier);
     this.panelControl.Controls.Add(this.Driver);
     this.panelControl.Controls.Add(this.Contractor);
     this.panelControl.Controls.Add(this.Date);
     this.panelControl.Controls.Add(this.IncomeNumber);
     this.panelControl.Controls.Add(this.labelControl7);
     this.panelControl.Controls.Add(this.labelControl6);
     this.panelControl.Controls.Add(this.labelControl5);
     this.panelControl.Controls.Add(this.labelControl4);
     this.panelControl.Controls.Add(this.State);
     this.panelControl.Controls.Add(this.labelControl3);
     this.panelControl.Controls.Add(this.label);
     this.panelControl.Controls.Add(this.labelControl1);
     this.panelControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl.Location = new System.Drawing.Point(0, 49);
     this.panelControl.Name = "panelControl";
     this.panelControl.Size = new System.Drawing.Size(879, 85);
     this.panelControl.TabIndex = 2;
     //
     // TypeOfShipment
     //
     this.TypeOfShipment.Location = new System.Drawing.Point(719, 6);
     this.TypeOfShipment.MenuManager = this.ribbon;
     this.TypeOfShipment.Name = "TypeOfShipment";
     this.TypeOfShipment.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TypeOfShipment.Size = new System.Drawing.Size(148, 20);
     this.TypeOfShipment.TabIndex = 19;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(615, 9);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(98, 13);
     this.labelControl2.TabIndex = 20;
     this.labelControl2.Text = "��� ������������";
     //
     // Car
     //
     this.Car.BaseFilter = null;
     this.Car.Location = new System.Drawing.Point(500, 58);
     this.Car.MenuManager = this.ribbon;
     this.Car.Name = "Car";
     this.Car.Properties.BaseFilter = null;
     this.Car.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Car.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Car.Properties.NullText = "";
     this.Car.Size = new System.Drawing.Size(367, 20);
     this.Car.TabIndex = 18;
     //
     // Carrier
     //
     this.Carrier.BaseFilter = null;
     this.Carrier.Location = new System.Drawing.Point(500, 32);
     this.Carrier.MenuManager = this.ribbon;
     this.Carrier.Name = "Carrier";
     this.Carrier.Properties.BaseFilter = null;
     this.Carrier.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Carrier.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Carrier.Properties.NullText = "";
     this.Carrier.Size = new System.Drawing.Size(367, 20);
     this.Carrier.TabIndex = 17;
     //
     // Driver
     //
     this.Driver.BaseFilter = null;
     this.Driver.Location = new System.Drawing.Point(83, 58);
     this.Driver.MenuManager = this.ribbon;
     this.Driver.Name = "Driver";
     this.Driver.Properties.BaseFilter = null;
     this.Driver.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Driver.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Driver.Properties.NullText = "";
     this.Driver.Size = new System.Drawing.Size(322, 20);
     this.Driver.TabIndex = 16;
     //
     // Contractor
     //
     this.Contractor.BaseFilter = null;
     this.Contractor.Location = new System.Drawing.Point(83, 32);
     this.Contractor.MenuManager = this.ribbon;
     this.Contractor.Name = "Contractor";
     this.Contractor.Properties.BaseFilter = null;
     this.Contractor.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.Contractor.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.Contractor.Properties.NullText = "";
     this.Contractor.Size = new System.Drawing.Size(322, 20);
     this.Contractor.TabIndex = 15;
     //
     // Date
     //
     this.Date.EditValue = null;
     this.Date.Location = new System.Drawing.Point(305, 6);
     this.Date.MenuManager = this.ribbon;
     this.Date.Name = "Date";
     this.Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.Date.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.Date.Size = new System.Drawing.Size(100, 20);
     this.Date.TabIndex = 14;
     //
     // IncomeNumber
     //
     this.IncomeNumber.Location = new System.Drawing.Point(83, 6);
     this.IncomeNumber.MenuManager = this.ribbon;
     this.IncomeNumber.Name = "IncomeNumber";
     this.IncomeNumber.Size = new System.Drawing.Size(104, 20);
     this.IncomeNumber.TabIndex = 13;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(411, 61);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(40, 13);
     this.labelControl7.TabIndex = 12;
     this.labelControl7.Text = "������";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(10, 61);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(27, 13);
     this.labelControl6.TabIndex = 10;
     this.labelControl6.Text = "����";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(411, 35);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(56, 13);
     this.labelControl5.TabIndex = 8;
     this.labelControl5.Text = "���������";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(10, 35);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(60, 13);
     this.labelControl4.TabIndex = 6;
     this.labelControl4.Text = "����������";
     //
     // State
     //
     this.State.Location = new System.Drawing.Point(500, 6);
     this.State.MenuManager = this.ribbon;
     this.State.Name = "State";
     this.State.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.State.Size = new System.Drawing.Size(109, 20);
     this.State.TabIndex = 0;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(411, 9);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(83, 13);
     this.labelControl3.TabIndex = 4;
     this.labelControl3.Text = "���� ���������";
     //
     // label
     //
     this.label.Location = new System.Drawing.Point(193, 9);
     this.label.Name = "label";
     this.label.Size = new System.Drawing.Size(106, 13);
     this.label.TabIndex = 2;
     this.label.Text = "���� ������������";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(10, 9);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(67, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "� ��������";
     //
     // NomenclatureInfo
     //
     this.NomenclatureInfo.Dock = System.Windows.Forms.DockStyle.Fill;
     this.NomenclatureInfo.Location = new System.Drawing.Point(2, 44);
     this.NomenclatureInfo.MainView = this.nomenclatureView;
     this.NomenclatureInfo.MenuManager = this.ribbon;
     this.NomenclatureInfo.Name = "NomenclatureInfo";
     this.NomenclatureInfo.Size = new System.Drawing.Size(875, 372);
     this.NomenclatureInfo.TabIndex = 1;
     this.NomenclatureInfo.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.nomenclatureView});
     //
     // nomenclatureView
     //
     this.nomenclatureView.GridControl = this.NomenclatureInfo;
     this.nomenclatureView.Name = "nomenclatureView";
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.pictureEdit1);
     this.panelControl1.Controls.Add(this.Info);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 552);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(879, 20);
     this.panelControl1.TabIndex = 0;
     //
     // pictureEdit1
     //
     this.pictureEdit1.Dock = System.Windows.Forms.DockStyle.Left;
     this.pictureEdit1.EditValue = global::FMCG.Properties.Resources._1317825614_information_balloon;
     this.pictureEdit1.Location = new System.Drawing.Point(0, 0);
     this.pictureEdit1.MenuManager = this.ribbon;
     this.pictureEdit1.Name = "pictureEdit1";
     this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
     this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pictureEdit1.Size = new System.Drawing.Size(20, 20);
     this.pictureEdit1.TabIndex = 3;
     this.pictureEdit1.ToolTip = "��� ������� ��������� �������� �� ���� ���������� �����������";
     this.pictureEdit1.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.pictureEdit1.ToolTipTitle = "������:";
     //
     // Info
     //
     this.Info.Appearance.ForeColor = System.Drawing.Color.Gray;
     this.Info.Location = new System.Drawing.Point(24, 3);
     this.Info.Name = "Info";
     this.Info.Size = new System.Drawing.Size(12, 13);
     this.Info.TabIndex = 1;
     this.Info.Text = "...";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem1.Caption = "OK";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.ImageIndex = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem3.Caption = "��������";
     this.barButtonItem3.Id = 1;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barButtonItem4.Caption = "³����";
     this.barButtonItem4.Id = 2;
     this.barButtonItem4.ImageIndex = 1;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.NomenclatureInfo);
     this.groupControl1.Controls.Add(this.panelControl2);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl1.Location = new System.Drawing.Point(0, 134);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(879, 418);
     this.groupControl1.TabIndex = 21;
     this.groupControl1.Text = "������������";
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.showNomenclature);
     this.panelControl2.Controls.Add(this.showTare);
     this.panelControl2.Controls.Add(this.NomenclatureInfoButtonsBar);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl2.Location = new System.Drawing.Point(2, 21);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(875, 23);
     this.panelControl2.TabIndex = 6;
     //
     // showNomenclature
     //
     this.showNomenclature.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.showNomenclature.Location = new System.Drawing.Point(699, 0);
     this.showNomenclature.Name = "showNomenclature";
     this.showNomenclature.Size = new System.Drawing.Size(88, 23);
     this.showNomenclature.TabIndex = 4;
     this.showNomenclature.Text = "������������";
     this.showNomenclature.CheckedChanged += new System.EventHandler(this.showNomenclature_CheckedChanged);
     //
     // showTare
     //
     this.showTare.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.showTare.Location = new System.Drawing.Point(795, 0);
     this.showTare.Name = "showTare";
     this.showTare.Size = new System.Drawing.Size(75, 23);
     this.showTare.TabIndex = 3;
     this.showTare.Text = "����";
     this.showTare.CheckedChanged += new System.EventHandler(this.showTare_CheckedChanged);
     //
     // ShipmentItemForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(879, 603);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.panelControl);
     this.Controls.Add(this.ribbonStatusBar);
     this.Controls.Add(this.ribbon);
     this.KeyPreview = true;
     this.Name = "ShipmentItemForm";
     this.Ribbon = this.ribbon;
     this.StatusBar = this.ribbonStatusBar;
     this.Text = "Item form";
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Itemform_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.ribbon)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
     this.panelControl.ResumeLayout(false);
     this.panelControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TypeOfShipment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Car.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Carrier.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Driver.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Contractor.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Date.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IncomeNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.State.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NomenclatureInfo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nomenclatureView)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #8
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.txtOld = new DevExpress.XtraEditors.TextEdit();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.txtNew1 = new DevExpress.XtraEditors.TextEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.txtNew2 = new DevExpress.XtraEditors.TextEdit();
     this.btnConfirm = new DevExpress.XtraEditors.SimpleButton();
     this.btnViewPAS = new DevExpress.XtraEditors.CheckButton();
     ((System.ComponentModel.ISupportInitialize)(this.txtOld.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNew1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNew2.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // txtOld
     //
     this.txtOld.Location = new System.Drawing.Point(103, 59);
     this.txtOld.Name = "txtOld";
     this.txtOld.Properties.Appearance.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtOld.Properties.Appearance.Options.UseFont = true;
     this.txtOld.Properties.PasswordChar = '*';
     this.txtOld.Size = new System.Drawing.Size(195, 26);
     this.txtOld.TabIndex = 13;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("微软雅黑", 9.75F);
     this.label1.Location = new System.Drawing.Point(46, 62);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(51, 19);
     this.label1.TabIndex = 14;
     this.label1.Text = "旧密码:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("微软雅黑", 9.75F);
     this.label2.Location = new System.Drawing.Point(46, 100);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(51, 19);
     this.label2.TabIndex = 15;
     this.label2.Text = "新密码:";
     //
     // txtNew1
     //
     this.txtNew1.Location = new System.Drawing.Point(103, 97);
     this.txtNew1.Name = "txtNew1";
     this.txtNew1.Properties.Appearance.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNew1.Properties.Appearance.Options.UseFont = true;
     this.txtNew1.Properties.PasswordChar = '*';
     this.txtNew1.Size = new System.Drawing.Size(195, 26);
     this.txtNew1.TabIndex = 16;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("微软雅黑", 9.75F);
     this.label3.Location = new System.Drawing.Point(20, 138);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(77, 19);
     this.label3.TabIndex = 17;
     this.label3.Text = "确认新密码:";
     //
     // txtNew2
     //
     this.txtNew2.Location = new System.Drawing.Point(103, 135);
     this.txtNew2.Name = "txtNew2";
     this.txtNew2.Properties.Appearance.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtNew2.Properties.Appearance.Options.UseFont = true;
     this.txtNew2.Properties.PasswordChar = '*';
     this.txtNew2.Size = new System.Drawing.Size(195, 26);
     this.txtNew2.TabIndex = 18;
     //
     // btnConfirm
     //
     this.btnConfirm.Appearance.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnConfirm.Appearance.Options.UseFont = true;
     this.btnConfirm.Location = new System.Drawing.Point(223, 181);
     this.btnConfirm.LookAndFeel.SkinName = "Office 2010 Silver";
     this.btnConfirm.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnConfirm.Name = "btnConfirm";
     this.btnConfirm.Size = new System.Drawing.Size(75, 31);
     this.btnConfirm.TabIndex = 20;
     this.btnConfirm.Text = "确认修改";
     this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
     //
     // btnViewPAS
     //
     this.btnViewPAS.Appearance.Font = new System.Drawing.Font("微软雅黑", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnViewPAS.Appearance.Options.UseFont = true;
     this.btnViewPAS.Location = new System.Drawing.Point(103, 181);
     this.btnViewPAS.LookAndFeel.SkinName = "Office 2010 Silver";
     this.btnViewPAS.LookAndFeel.UseDefaultLookAndFeel = false;
     this.btnViewPAS.Name = "btnViewPAS";
     this.btnViewPAS.Size = new System.Drawing.Size(75, 31);
     this.btnViewPAS.TabIndex = 22;
     this.btnViewPAS.Text = "显示密码";
     this.btnViewPAS.CheckedChanged += new System.EventHandler(this.btnViewPAS_CheckedChanged);
     //
     // FrmPASChange
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(359, 246);
     this.Controls.Add(this.btnViewPAS);
     this.Controls.Add(this.btnConfirm);
     this.Controls.Add(this.txtNew2);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.txtNew1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.txtOld);
     this.Controls.Add(this.label1);
     this.MaximizeBox = false;
     this.Name = "FrmPASChange";
     this.ShowInTaskbar = false;
     this.Text = "修改密码";
     ((System.ComponentModel.ISupportInitialize)(this.txtOld.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNew1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtNew2.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #9
0
 private void setSnaptext()
 {
     string sfile = Application.StartupPath + @"\snap.text";
     DevExpress.XtraEditors.CheckButton ckbtn = new DevExpress.XtraEditors.CheckButton();
     string stype = "";
     for (int i = 0; i < panel1.Controls.Count; i++)
     {
         try
         {
             ckbtn = (DevExpress.XtraEditors.CheckButton)panel1.Controls[i];
             if (ckbtn.Checked)
             {
                 if (stype == "")
                     stype = ckbtn.Tag.ToString();
                 else
                     stype += "|" + ckbtn.Tag.ToString();
             }
         }
         catch
         {
             continue;
         }
     }
     stype = ckBtnOpenBZ.Checked.ToString().ToLower()+"$"+stype;
     System.IO.File.WriteAllText(sfile, stype);
 }
コード例 #10
0
 private void setsnap()
 {
     esriSnappingType snaptype = new esriSnappingType();
     //snaptype=(esriSnappingType)((int)esriSnappingType.esriSnappingTypePoint + (int)esriSnappingType.esriSnappingTypeEdge + (int)esriSnappingType.esriSnappingTypeEndpoint + (int)esriSnappingType.esriSnappingTypeMidpoint + (int)esriSnappingType.esriSnappingTypeIntersection + (int)esriSnappingType.esriSnappingTypeVertex + (int)esriSnappingType.esriSnappingTypeTangent);
     //1点  8边线  2端点   16中点    32交点    4折点   64切线
     if (ckBtnOpenBZ.Checked == false)
         return;
     int type = 0;
     DevExpress.XtraEditors.CheckButton ckbtn = new DevExpress.XtraEditors.CheckButton();
     for (int i = 0; i < panel1.Controls.Count; i++)
     {
         try
         {
             ckbtn = (DevExpress.XtraEditors.CheckButton)panel1.Controls[i];
             if (ckbtn.Checked)
             {
                 type += Convert.ToInt32(ckbtn.Tag);
             }
         }
         catch
         {
             continue;
         }
     }
     setSnaptext();
     snaptype = (esriSnappingType)type;
     GraphicEdit.SnapSetting.m_hookHelper = new HookHelperClass();
     GraphicEdit.SnapSetting.m_hookHelper.Hook = m_axmap.Object;
     GraphicEdit.SnapSetting.snappingType = snaptype;
     GraphicEdit.SnapSetting.m_bStartSnap = true;
     GraphicEdit.SnapSetting.StartSnappingEnv();
 }
コード例 #11
0
 private void getsnaptext()
 {
     string sfile = Application.StartupPath + @"\snap.text";
     if (System.IO.File.Exists(sfile))
     {
         string stype = System.IO.File.ReadAllText(sfile);
         string ck = stype.Split('$')[0];
         string type = stype.Split('$')[1];
         string[] cktype = type.Split('|');
         DevExpress.XtraEditors.CheckButton ckbtn = new DevExpress.XtraEditors.CheckButton();
         for (int i = 0; i < panel1.Controls.Count; i++)
         {
             try
             {
                 ckbtn = (DevExpress.XtraEditors.CheckButton)panel1.Controls[i];
                 for (int j = 0; j < cktype.Length; j++)
                 {
                     if (ckbtn.Tag.ToString().Equals(cktype[j]))
                     {
                         ckbtn.Checked = true;
                     }
                 }
             }
             catch
             {
                 continue;
             }
         }
         if (ck.Equals("true"))
             ckBtnOpenBZ.Checked = true;
     }
     try
     {
         DataSet ds = new DataSet();
         ds.ReadXml(Application.StartupPath+@"\gis.xml");
         DataTable dt = ds.Tables[0];
         for (int i = 0; i < dt.Rows.Count; i++)
         {
             try
             {
                 string name = dt.Rows[i]["name"].ToString();
                 string value = dt.Rows[i]["value"].ToString();
                 string param=dt.Rows[i]["params"].ToString();
                 if (name.Equals("Scale"))
                 {
                     m_axmap.MapScale = Convert.ToDouble(value);
                     toolLabelBLC.Text = value;
                 }
                 if (name.Equals("ckScale"))
                 {
                     m_axmap.ReferenceScale = Convert.ToDouble(value);
                     if (value.Equals("0"))
                         cbBoxCKBLC.Text = "无";
                     else
                         cbBoxCKBLC.Text = value;
                 }
                 if (name.Equals("Rotation"))
                 {
                     m_axmap.Rotation = Convert.ToDouble(value);
                 }
                 if (name.Equals("extent"))
                 {
                     string[] extent = value.Split(',');
                     ESRI.ArcGIS.Geometry.IEnvelope pEnvelop = new ESRI.ArcGIS.Geometry.EnvelopeClass();
                     pEnvelop.XMax = Convert.ToDouble(extent[0]);
                     pEnvelop.XMin = Convert.ToDouble(extent[1]);
                     pEnvelop.YMax = Convert.ToDouble(extent[2]);
                     pEnvelop.YMin = Convert.ToDouble(extent[3]);
                     m_axmap.Extent = pEnvelop;
                 }
                 if (name.Equals("layer"))
                 {
                     ILayer pLayer = GetLayerByName(m_axmap.Map, value);
                     if (param.ToLower().Equals("true"))
                         pLayer.Visible = true;
                     else
                         pLayer.Visible = false;
                 }
             }
             catch { }
         }
     }
     catch { }
     m_axmap.Refresh();
 }