void colorPickEdit1_ButtonClick(object sender, DevExpress.XtraEditors.Controls.ButtonPressedEventArgs e) { if (e.Button.Caption != "MoreColors") { return; } ColorPickEdit edit = sender as ColorPickEdit; RepositoryItemColorPickEdit ritem = edit.Properties; try { ritem.LockEventsCore(); using (FrmColorPicker frm = new FrmColorPicker(ritem)) { frm.StartPosition = FormStartPosition.CenterScreen; var editorColor = (Color)ritem.OwnerEdit.EditValue; frm.SelectedColor = editorColor.IsEmpty ? Color.FromArgb(255, editorColor) : editorColor; frm.TopMost = true; if (frm.ShowDialog(ritem.OwnerEdit.FindForm()) == DialogResult.OK) { ritem.OwnerEdit.EditValue = frm.SelectedColor; //updating recent colors ritem.RecentColors.InsertColor(frm.SelectedColor, 0); } } } finally { ritem.ReleaseEventsCore(true); } }
//Menu item click handler public static void OnFixedClick(object sender, EventArgs e) { DXMenuItem item = sender as DXMenuItem; MenuInfo info = item.Tag as MenuInfo; if (info == null) { return; } if (item.Caption.Substring(0, 3) == "Col") { if (item.Caption == "Color Customize...") { ColorPickEdit colorPickerEdit = new ColorPickEdit(); FrmColorPicker frm = new FrmColorPicker(colorPickerEdit.Properties); frm.StartPosition = FormStartPosition.CenterScreen; frm.TopMost = true; if (frm.ShowDialog(colorPickerEdit.FindForm()) == DialogResult.OK) { info.Column.AppearanceCell.BackColor = frm.SelectedColor; } } else { info.Column.AppearanceCell.BackColor = ((Bitmap)item.Image).GetPixel(5, 5); } } else if (item.Caption.Substring(0, 4) == "Font") { FontDialog fontDialog = new FontDialog(); fontDialog.ShowDialog(); info.Column.AppearanceCell.Font = fontDialog.Font; } else { if (item.Caption == "ForeColor Customize...") { ColorPickEdit colorPickerEdit = new ColorPickEdit(); FrmColorPicker frm = new FrmColorPicker(colorPickerEdit.Properties); frm.StartPosition = FormStartPosition.CenterScreen; frm.TopMost = true; if (frm.ShowDialog(colorPickerEdit.FindForm()) == System.Windows.Forms.DialogResult.OK) { info.Column.AppearanceCell.ForeColor = frm.SelectedColor; } } else { info.Column.AppearanceCell.ForeColor = ((Bitmap)item.Image).GetPixel(5, 5); } } }
private void gvNhomphong_CustomRowCellEdit(object sender, DevExpress.XtraGrid.Views.Grid.CustomRowCellEditEventArgs e) { ColorPickEdit c = new ColorPickEdit(); c.EditValue = String.Format("{0:X}", gvNhomphong.GetRowCellValue(e.RowHandle, "Mamau")); if (e.RowHandle == gvNhomphong.FocusedRowHandle && e.Column == colMa) { txtMa.EditValue = gvNhomphong.GetRowCellValue(e.RowHandle, "Manhom").ToString().Trim(); txtVitri.EditValue = gvNhomphong.GetRowCellValue(e.RowHandle, "Vitri").ToString().Trim(); cpeMau.EditValue = c.EditValue; } }
private void colorPickEditMap_CustomDisplayText(object sender, CustomDisplayTextEventArgs e) { ColorPickEdit colorEdit = (sender as ColorPickEdit); if (colorEdit.Color.IsEmpty) { e.DisplayText = string.Empty; } else if (!colorEdit.Color.IsKnownColor) { Color color = colorEdit.Color; //X2 means 2 digit hex, so that F will be 0F e.DisplayText = String.Format("#{0:X2}{1:X2}{2:X2}", color.R, color.G, color.B); } }
private void tileView1_ItemCustomize(object sender, DevExpress.XtraGrid.Views.Tile.TileViewItemCustomizeEventArgs e) { s = e; var list = db.DK_Customers; var list2 = db.Rooms.ToList(); var list3 = db.Rooms.Where(m => m.Status == 5).ToList(); foreach (var item in list2) { var roomtang = db.RoomTangs.ToList(); foreach (var room in roomtang) { ColorPickEdit c = new ColorPickEdit(); if (Convert.ToInt32(e.Item.Elements[0].Text) == room.Manhom && item.Manhom == room.Manhom) { c.EditValue = String.Format("{0:X}", room.Mamau); Color mau = c.Color; e.Item.AppearanceItem.Normal.BackColor = mau; } } } foreach (var item in list3) { if (Convert.ToInt32(e.Item.Elements[3].Text) == item.Sophong) { e.Item.Elements[6].Image = Properties.Resources.help20; } } if (list.Count() != 0) { foreach (var item in list.ToList()) { if (item.Sophong == Convert.ToInt32(e.Item.Elements[3].Text) && item.Daidien == true) { e.Item.Elements[4].Text = item.Hoten; e.Item.Elements[5].Text = item.DateCheckin.ToShortDateString(); e.Item.Elements[1].Image = global::devexpress.Properties.Resources.Office_Customer_Male_Light_icon; } } } }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl(); this.tbc_Date = new DevExpress.XtraEditors.TrackBarControl(); this.tbc_Time = new DevExpress.XtraEditors.TrackBarControl(); this.spe_Int = new DevExpress.XtraEditors.SpinEdit(); this.cmb_simu = new DevExpress.XtraEditors.ComboBoxEdit(); this.tbc_colorAlpha = new DevExpress.XtraEditors.TrackBarControl(); this.ce_color = new DevExpress.XtraEditors.ColorPickEdit(); this.cbeLunarHolDay = new DevExpress.XtraEditors.ComboBoxEdit(); this.te_time = new DevExpress.XtraEditors.TimeEdit(); this.de_data = new DevExpress.XtraEditors.DateEdit(); this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup(); this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup(); this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup(); this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem(); this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem(); this.barManager1 = new DevExpress.XtraBars.BarManager(this.components); this.bar1 = new DevExpress.XtraBars.Bar(); this.bci_Play = new DevExpress.XtraBars.BarButtonItem(); this.bci_Pause = new DevExpress.XtraBars.BarButtonItem(); this.bci_Stop = new DevExpress.XtraBars.BarButtonItem(); this.barDockControlTop = new DevExpress.XtraBars.BarDockControl(); this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl(); this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl(); this.barDockControlRight = new DevExpress.XtraBars.BarDockControl(); ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit(); this.layoutControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.tbc_Date)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbc_Date.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbc_Time)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbc_Time.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.spe_Int.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cmb_simu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbc_colorAlpha)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbc_colorAlpha.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ce_color.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cbeLunarHolDay.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.te_time.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.de_data.Properties.CalendarTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.de_data.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit(); this.SuspendLayout(); // // layoutControl1 // this.layoutControl1.Controls.Add(this.tbc_Date); this.layoutControl1.Controls.Add(this.tbc_Time); this.layoutControl1.Controls.Add(this.spe_Int); this.layoutControl1.Controls.Add(this.cmb_simu); this.layoutControl1.Controls.Add(this.tbc_colorAlpha); this.layoutControl1.Controls.Add(this.ce_color); this.layoutControl1.Controls.Add(this.cbeLunarHolDay); this.layoutControl1.Controls.Add(this.te_time); this.layoutControl1.Controls.Add(this.de_data); this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.layoutControl1.Location = new System.Drawing.Point(0, 31); this.layoutControl1.Name = "layoutControl1"; this.layoutControl1.Root = this.layoutControlGroup1; this.layoutControl1.Size = new System.Drawing.Size(253, 444); this.layoutControl1.TabIndex = 0; this.layoutControl1.Text = "layoutControl1"; // // tbc_Date // this.tbc_Date.EditValue = null; this.tbc_Date.Location = new System.Drawing.Point(77, 332); this.tbc_Date.Name = "tbc_Date"; this.tbc_Date.Properties.LabelAppearance.Options.UseTextOptions = true; this.tbc_Date.Properties.LabelAppearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.tbc_Date.Properties.LargeChange = 30; this.tbc_Date.Properties.Maximum = 366; this.tbc_Date.Properties.TickFrequency = 15; this.tbc_Date.Size = new System.Drawing.Size(162, 45); this.tbc_Date.StyleController = this.layoutControl1; this.tbc_Date.TabIndex = 15; this.tbc_Date.EditValueChanged += new System.EventHandler(this.tbc_Date_EditValueChanged); // // tbc_Time // this.tbc_Time.EditValue = null; this.tbc_Time.Location = new System.Drawing.Point(77, 283); this.tbc_Time.Name = "tbc_Time"; this.tbc_Time.Properties.LabelAppearance.Options.UseTextOptions = true; this.tbc_Time.Properties.LabelAppearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.tbc_Time.Properties.LargeChange = 60; this.tbc_Time.Properties.Maximum = 1440; this.tbc_Time.Properties.TickFrequency = 60; this.tbc_Time.Size = new System.Drawing.Size(162, 45); this.tbc_Time.StyleController = this.layoutControl1; this.tbc_Time.TabIndex = 14; this.tbc_Time.EditValueChanged += new System.EventHandler(this.tbc_Time_EditValueChanged); // // spe_Int // this.spe_Int.EditValue = new decimal(new int[] { 10, 0, 0, 0 }); this.spe_Int.Location = new System.Drawing.Point(77, 257); this.spe_Int.Name = "spe_Int"; this.spe_Int.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.spe_Int.Properties.IsFloatValue = false; this.spe_Int.Properties.Mask.EditMask = "N00"; this.spe_Int.Properties.MaxValue = new decimal(new int[] { 60, 0, 0, 0 }); this.spe_Int.Properties.MinValue = new decimal(new int[] { 1, 0, 0, 0 }); this.spe_Int.Size = new System.Drawing.Size(162, 22); this.spe_Int.StyleController = this.layoutControl1; this.spe_Int.TabIndex = 13; // // cmb_simu // this.cmb_simu.EditValue = "按时间(分钟)"; this.cmb_simu.Location = new System.Drawing.Point(77, 231); this.cmb_simu.Name = "cmb_simu"; this.cmb_simu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.cmb_simu.Size = new System.Drawing.Size(162, 22); this.cmb_simu.StyleController = this.layoutControl1; this.cmb_simu.TabIndex = 12; // // tbc_colorAlpha // this.tbc_colorAlpha.EditValue = 255; this.tbc_colorAlpha.Location = new System.Drawing.Point(77, 138); this.tbc_colorAlpha.Name = "tbc_colorAlpha"; this.tbc_colorAlpha.Properties.LabelAppearance.Options.UseTextOptions = true; this.tbc_colorAlpha.Properties.LabelAppearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.tbc_colorAlpha.Properties.Maximum = 255; this.tbc_colorAlpha.Properties.TickFrequency = 5; this.tbc_colorAlpha.Size = new System.Drawing.Size(162, 45); this.tbc_colorAlpha.StyleController = this.layoutControl1; this.tbc_colorAlpha.TabIndex = 11; this.tbc_colorAlpha.Value = 255; this.tbc_colorAlpha.EditValueChanged += new System.EventHandler(this.tbc_colorAlpha_EditValueChanged); // // ce_color // this.ce_color.EditValue = System.Drawing.Color.Black; this.ce_color.Location = new System.Drawing.Point(77, 112); this.ce_color.Name = "ce_color"; this.ce_color.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.ce_color.Size = new System.Drawing.Size(162, 22); this.ce_color.StyleController = this.layoutControl1; this.ce_color.TabIndex = 10; this.ce_color.EditValueChanged += new System.EventHandler(this.ce_color_EditValueChanged); // // cbeLunarHolDay // this.cbeLunarHolDay.Location = new System.Drawing.Point(77, 86); this.cbeLunarHolDay.Name = "cbeLunarHolDay"; this.cbeLunarHolDay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.cbeLunarHolDay.Size = new System.Drawing.Size(162, 22); this.cbeLunarHolDay.StyleController = this.layoutControl1; this.cbeLunarHolDay.TabIndex = 9; // // te_time // this.te_time.EditValue = new System.DateTime(2018, 1, 5, 0, 0, 0, 0); this.te_time.Location = new System.Drawing.Point(77, 60); this.te_time.Name = "te_time"; this.te_time.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.te_time.Size = new System.Drawing.Size(162, 22); this.te_time.StyleController = this.layoutControl1; this.te_time.TabIndex = 8; this.te_time.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.te_time_EditValueChanging); // // de_data // this.de_data.EditValue = null; this.de_data.Location = new System.Drawing.Point(77, 34); this.de_data.Name = "de_data"; this.de_data.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.de_data.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.de_data.Size = new System.Drawing.Size(162, 22); this.de_data.StyleController = this.layoutControl1; this.de_data.TabIndex = 7; this.de_data.EditValueChanged += new System.EventHandler(this.de_data_EditValueChanged); // // layoutControlGroup1 // this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1"; this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True; this.layoutControlGroup1.GroupBordersVisible = false; this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { this.layoutControlGroup2, this.layoutControlGroup3, this.emptySpaceItem4 }); this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0); this.layoutControlGroup1.Name = "layoutControlGroup1"; this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0); this.layoutControlGroup1.Size = new System.Drawing.Size(253, 444); this.layoutControlGroup1.Text = "layoutControlGroup1"; this.layoutControlGroup1.TextVisible = false; // // layoutControlGroup2 // this.layoutControlGroup2.CustomizationFormText = "基本设置"; this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { this.layoutControlItem4, this.layoutControlItem5, this.layoutControlItem6, this.layoutControlItem7, this.layoutControlItem8 }); this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0); this.layoutControlGroup2.Name = "layoutControlGroup2"; this.layoutControlGroup2.Size = new System.Drawing.Size(253, 197); this.layoutControlGroup2.Text = "基本设置"; // // layoutControlItem4 // this.layoutControlItem4.Control = this.de_data; this.layoutControlItem4.CustomizationFormText = "layoutControlItem4"; this.layoutControlItem4.Location = new System.Drawing.Point(0, 0); this.layoutControlItem4.Name = "layoutControlItem4"; this.layoutControlItem4.Size = new System.Drawing.Size(229, 26); this.layoutControlItem4.Text = "当前日期:"; this.layoutControlItem4.TextSize = new System.Drawing.Size(60, 14); // // layoutControlItem5 // this.layoutControlItem5.Control = this.te_time; this.layoutControlItem5.CustomizationFormText = "时间:"; this.layoutControlItem5.Location = new System.Drawing.Point(0, 26); this.layoutControlItem5.Name = "layoutControlItem5"; this.layoutControlItem5.Size = new System.Drawing.Size(229, 26); this.layoutControlItem5.Text = "当前时间:"; this.layoutControlItem5.TextSize = new System.Drawing.Size(60, 14); // // layoutControlItem6 // this.layoutControlItem6.Control = this.cbeLunarHolDay; this.layoutControlItem6.CustomizationFormText = "节气:"; this.layoutControlItem6.Location = new System.Drawing.Point(0, 52); this.layoutControlItem6.Name = "layoutControlItem6"; this.layoutControlItem6.Size = new System.Drawing.Size(229, 26); this.layoutControlItem6.Text = "节气:"; this.layoutControlItem6.TextSize = new System.Drawing.Size(60, 14); // // layoutControlItem7 // this.layoutControlItem7.Control = this.ce_color; this.layoutControlItem7.CustomizationFormText = "阴影颜色:"; this.layoutControlItem7.Location = new System.Drawing.Point(0, 78); this.layoutControlItem7.Name = "layoutControlItem7"; this.layoutControlItem7.Size = new System.Drawing.Size(229, 26); this.layoutControlItem7.Text = "阴影颜色:"; this.layoutControlItem7.TextSize = new System.Drawing.Size(60, 14); // // layoutControlItem8 // this.layoutControlItem8.Control = this.tbc_colorAlpha; this.layoutControlItem8.CustomizationFormText = "不透明度:"; this.layoutControlItem8.Location = new System.Drawing.Point(0, 104); this.layoutControlItem8.Name = "layoutControlItem8"; this.layoutControlItem8.Size = new System.Drawing.Size(229, 49); this.layoutControlItem8.Text = "不透明度:"; this.layoutControlItem8.TextSize = new System.Drawing.Size(60, 14); // // layoutControlGroup3 // this.layoutControlGroup3.CustomizationFormText = "动态模拟"; this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { this.layoutControlItem9, this.layoutControlItem10, this.layoutControlItem11, this.layoutControlItem12 }); this.layoutControlGroup3.Location = new System.Drawing.Point(0, 197); this.layoutControlGroup3.Name = "layoutControlGroup3"; this.layoutControlGroup3.Size = new System.Drawing.Size(253, 194); this.layoutControlGroup3.Text = "动态模拟"; // // layoutControlItem9 // this.layoutControlItem9.Control = this.cmb_simu; this.layoutControlItem9.CustomizationFormText = "模拟方式:"; this.layoutControlItem9.Location = new System.Drawing.Point(0, 0); this.layoutControlItem9.Name = "layoutControlItem9"; this.layoutControlItem9.Size = new System.Drawing.Size(229, 26); this.layoutControlItem9.Text = "模拟方式:"; this.layoutControlItem9.TextSize = new System.Drawing.Size(60, 14); // // layoutControlItem10 // this.layoutControlItem10.Control = this.spe_Int; this.layoutControlItem10.CustomizationFormText = "时间间隔:"; this.layoutControlItem10.Location = new System.Drawing.Point(0, 26); this.layoutControlItem10.Name = "layoutControlItem10"; this.layoutControlItem10.Size = new System.Drawing.Size(229, 26); this.layoutControlItem10.Text = "时间间隔:"; this.layoutControlItem10.TextSize = new System.Drawing.Size(60, 14); // // layoutControlItem11 // this.layoutControlItem11.Control = this.tbc_Time; this.layoutControlItem11.CustomizationFormText = "时间:"; this.layoutControlItem11.Location = new System.Drawing.Point(0, 52); this.layoutControlItem11.Name = "layoutControlItem11"; this.layoutControlItem11.Size = new System.Drawing.Size(229, 49); this.layoutControlItem11.Text = "时间:"; this.layoutControlItem11.TextSize = new System.Drawing.Size(60, 14); // // layoutControlItem12 // this.layoutControlItem12.Control = this.tbc_Date; this.layoutControlItem12.CustomizationFormText = "日期:"; this.layoutControlItem12.Location = new System.Drawing.Point(0, 101); this.layoutControlItem12.Name = "layoutControlItem12"; this.layoutControlItem12.Size = new System.Drawing.Size(229, 49); this.layoutControlItem12.Text = "日期:"; this.layoutControlItem12.TextSize = new System.Drawing.Size(60, 14); // // emptySpaceItem4 // this.emptySpaceItem4.AllowHotTrack = false; this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4"; this.emptySpaceItem4.Location = new System.Drawing.Point(0, 391); this.emptySpaceItem4.Name = "emptySpaceItem4"; this.emptySpaceItem4.Size = new System.Drawing.Size(253, 53); this.emptySpaceItem4.Text = "emptySpaceItem4"; this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0); // // barManager1 // this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] { this.bar1 }); this.barManager1.DockControls.Add(this.barDockControlTop); this.barManager1.DockControls.Add(this.barDockControlBottom); this.barManager1.DockControls.Add(this.barDockControlLeft); this.barManager1.DockControls.Add(this.barDockControlRight); this.barManager1.Form = this; this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] { this.bci_Play, this.bci_Pause, this.bci_Stop }); this.barManager1.MaxItemId = 3; // // bar1 // this.bar1.BarName = "Tools"; this.bar1.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Top; this.bar1.DockCol = 0; this.bar1.DockRow = 0; this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top; this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.bci_Play), new DevExpress.XtraBars.LinkPersistInfo(this.bci_Pause), new DevExpress.XtraBars.LinkPersistInfo(this.bci_Stop) }); this.bar1.OptionsBar.DrawDragBorder = false; this.bar1.Text = "Tools"; // // bci_Play // this.bci_Play.Caption = "播放"; this.bci_Play.Id = 0; this.bci_Play.Name = "bci_Play"; this.bci_Play.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bci_Play_ItemClick); // // bci_Pause // this.bci_Pause.Caption = "暂停"; this.bci_Pause.Id = 1; this.bci_Pause.Name = "bci_Pause"; this.bci_Pause.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bci_Pause_ItemClick); // // bci_Stop // this.bci_Stop.Caption = "停止"; this.bci_Stop.Id = 2; this.bci_Stop.Name = "bci_Stop"; this.bci_Stop.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.bci_Stop_ItemClick); // // barDockControlTop // this.barDockControlTop.CausesValidation = false; this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top; this.barDockControlTop.Location = new System.Drawing.Point(0, 0); this.barDockControlTop.Size = new System.Drawing.Size(253, 31); // // barDockControlBottom // this.barDockControlBottom.CausesValidation = false; this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.barDockControlBottom.Location = new System.Drawing.Point(0, 475); this.barDockControlBottom.Size = new System.Drawing.Size(253, 0); // // barDockControlLeft // this.barDockControlLeft.CausesValidation = false; this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left; this.barDockControlLeft.Location = new System.Drawing.Point(0, 31); this.barDockControlLeft.Size = new System.Drawing.Size(0, 444); // // barDockControlRight // this.barDockControlRight.CausesValidation = false; this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right; this.barDockControlRight.Location = new System.Drawing.Point(253, 31); this.barDockControlRight.Size = new System.Drawing.Size(0, 444); // // UCSunSimulation // this.Controls.Add(this.layoutControl1); this.Controls.Add(this.barDockControlLeft); this.Controls.Add(this.barDockControlRight); this.Controls.Add(this.barDockControlBottom); this.Controls.Add(this.barDockControlTop); this.Name = "UCSunSimulation"; this.Size = new System.Drawing.Size(253, 475); ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit(); this.layoutControl1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.tbc_Date.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbc_Date)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbc_Time.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbc_Time)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.spe_Int.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cmb_simu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbc_colorAlpha.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbc_colorAlpha)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ce_color.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cbeLunarHolDay.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.te_time.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.de_data.Properties.CalendarTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.de_data.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit(); this.ResumeLayout(false); }
private void InitializeComponent() { this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl(); this.ceShowImage = new DevExpress.XtraEditors.CheckEdit(); this.tbcClipDis = new DevExpress.XtraEditors.TrackBarControl(); this.cpeBackGround = new DevExpress.XtraEditors.ColorPickEdit(); this.labelControl1 = new DevExpress.XtraEditors.LabelControl(); this.btnOutput = new DevExpress.XtraEditors.SimpleButton(); this.btnDrawSection = new DevExpress.XtraEditors.SimpleButton(); this.spResolution = new DevExpress.XtraEditors.SpinEdit(); this.seMinHeight = new DevExpress.XtraEditors.SpinEdit(); this.seMaxHeight = new DevExpress.XtraEditors.SpinEdit(); this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup(); this.emptySpaceItem3 = new DevExpress.XtraLayout.EmptySpaceItem(); this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup(); this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup(); this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem(); this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem(); ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit(); this.layoutControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.ceShowImage.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbcClipDis)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.tbcClipDis.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.cpeBackGround.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.spResolution.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.seMinHeight.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.seMaxHeight.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit(); this.SuspendLayout(); // // layoutControl1 // this.layoutControl1.Controls.Add(this.ceShowImage); this.layoutControl1.Controls.Add(this.tbcClipDis); this.layoutControl1.Controls.Add(this.cpeBackGround); this.layoutControl1.Controls.Add(this.labelControl1); this.layoutControl1.Controls.Add(this.btnOutput); this.layoutControl1.Controls.Add(this.btnDrawSection); this.layoutControl1.Controls.Add(this.spResolution); this.layoutControl1.Controls.Add(this.seMinHeight); this.layoutControl1.Controls.Add(this.seMaxHeight); this.layoutControl1.Cursor = System.Windows.Forms.Cursors.Default; this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.layoutControl1.Location = new System.Drawing.Point(0, 0); this.layoutControl1.Name = "layoutControl1"; this.layoutControl1.Root = this.layoutControlGroup1; this.layoutControl1.Size = new System.Drawing.Size(244, 366); this.layoutControl1.TabIndex = 0; this.layoutControl1.Text = "layoutControl1"; // // ceShowImage // this.ceShowImage.EditValue = true; this.ceShowImage.Location = new System.Drawing.Point(2, 295); this.ceShowImage.Name = "ceShowImage"; this.ceShowImage.Properties.Caption = "自动打开图片"; this.ceShowImage.Size = new System.Drawing.Size(240, 19); this.ceShowImage.StyleController = this.layoutControl1; this.ceShowImage.TabIndex = 12; // // tbcClipDis // this.tbcClipDis.EditValue = 200; this.tbcClipDis.Location = new System.Drawing.Point(113, 86); this.tbcClipDis.Name = "tbcClipDis"; this.tbcClipDis.Properties.LabelAppearance.Options.UseTextOptions = true; this.tbcClipDis.Properties.LabelAppearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.tbcClipDis.Properties.Maximum = 500; this.tbcClipDis.Properties.Minimum = 10; this.tbcClipDis.Size = new System.Drawing.Size(117, 45); this.tbcClipDis.StyleController = this.layoutControl1; this.tbcClipDis.TabIndex = 2; this.tbcClipDis.Value = 200; this.tbcClipDis.EditValueChanged += new System.EventHandler(this.tbcClipDis_EditValueChanged); // // cpeBackGround // this.cpeBackGround.EditValue = System.Drawing.Color.White; this.cpeBackGround.Location = new System.Drawing.Point(113, 231); this.cpeBackGround.Name = "cpeBackGround"; this.cpeBackGround.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.cpeBackGround.Size = new System.Drawing.Size(117, 22); this.cpeBackGround.StyleController = this.layoutControl1; this.cpeBackGround.TabIndex = 5; // // labelControl1 // this.labelControl1.Location = new System.Drawing.Point(177, 205); this.labelControl1.Name = "labelControl1"; this.labelControl1.Size = new System.Drawing.Size(53, 14); this.labelControl1.StyleController = this.layoutControl1; this.labelControl1.TabIndex = 11; this.labelControl1.Text = "pixel/10m"; // // btnOutput // this.btnOutput.Location = new System.Drawing.Point(2, 269); this.btnOutput.Name = "btnOutput"; this.btnOutput.Size = new System.Drawing.Size(240, 22); this.btnOutput.StyleController = this.layoutControl1; this.btnOutput.TabIndex = 6; this.btnOutput.Text = "出 图"; this.btnOutput.Click += new System.EventHandler(this.btnOutput_Click); // // btnDrawSection // this.btnDrawSection.Location = new System.Drawing.Point(14, 135); this.btnDrawSection.Name = "btnDrawSection"; this.btnDrawSection.Size = new System.Drawing.Size(216, 22); this.btnDrawSection.StyleController = this.layoutControl1; this.btnDrawSection.TabIndex = 3; this.btnDrawSection.Text = "绘制立面"; this.btnDrawSection.Click += new System.EventHandler(this.btnDrawSection_Click); // // spResolution // this.spResolution.EditValue = new decimal(new int[] { 100, 0, 0, 0 }); this.spResolution.Location = new System.Drawing.Point(113, 205); this.spResolution.Name = "spResolution"; this.spResolution.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.spResolution.Size = new System.Drawing.Size(60, 22); this.spResolution.StyleController = this.layoutControl1; this.spResolution.TabIndex = 4; // // seMinHeight // this.seMinHeight.EditValue = new decimal(new int[] { 10, 0, 0, -2147483648 }); this.seMinHeight.Location = new System.Drawing.Point(113, 60); this.seMinHeight.Name = "seMinHeight"; this.seMinHeight.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.seMinHeight.Size = new System.Drawing.Size(117, 22); this.seMinHeight.StyleController = this.layoutControl1; this.seMinHeight.TabIndex = 1; this.seMinHeight.EditValueChanged += new System.EventHandler(this.seMinHeight_EditValueChanged); // // seMaxHeight // this.seMaxHeight.EditValue = new decimal(new int[] { 100, 0, 0, 0 }); this.seMaxHeight.Location = new System.Drawing.Point(113, 34); this.seMaxHeight.Name = "seMaxHeight"; this.seMaxHeight.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) }); this.seMaxHeight.Size = new System.Drawing.Size(117, 22); this.seMaxHeight.StyleController = this.layoutControl1; this.seMaxHeight.TabIndex = 0; this.seMaxHeight.EditValueChanged += new System.EventHandler(this.seMaxHeight_EditValueChanged); // // layoutControlGroup1 // this.layoutControlGroup1.CustomizationFormText = "layoutControlGroup1"; this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True; this.layoutControlGroup1.GroupBordersVisible = false; this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { this.emptySpaceItem3, this.layoutControlGroup2, this.layoutControlGroup3, this.layoutControlItem7, this.layoutControlItem9 }); this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0); this.layoutControlGroup1.Name = "layoutControlGroup1"; this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0); this.layoutControlGroup1.Size = new System.Drawing.Size(244, 366); this.layoutControlGroup1.Text = "layoutControlGroup1"; this.layoutControlGroup1.TextVisible = false; // // emptySpaceItem3 // this.emptySpaceItem3.AllowHotTrack = false; this.emptySpaceItem3.CustomizationFormText = "emptySpaceItem3"; this.emptySpaceItem3.Location = new System.Drawing.Point(0, 316); this.emptySpaceItem3.Name = "emptySpaceItem3"; this.emptySpaceItem3.Size = new System.Drawing.Size(244, 50); this.emptySpaceItem3.Text = "emptySpaceItem3"; this.emptySpaceItem3.TextSize = new System.Drawing.Size(0, 0); // // layoutControlGroup2 // this.layoutControlGroup2.CustomizationFormText = "立面参数设置"; this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { this.layoutControlItem1, this.layoutControlItem2, this.layoutControlItem6, this.layoutControlItem3 }); this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0); this.layoutControlGroup2.Name = "layoutControlGroup2"; this.layoutControlGroup2.Size = new System.Drawing.Size(244, 171); this.layoutControlGroup2.Text = "立面参数"; // // layoutControlItem1 // this.layoutControlItem1.Control = this.seMaxHeight; this.layoutControlItem1.CustomizationFormText = "layoutControlItem1"; this.layoutControlItem1.Location = new System.Drawing.Point(0, 0); this.layoutControlItem1.Name = "layoutControlItem1"; this.layoutControlItem1.Size = new System.Drawing.Size(220, 26); this.layoutControlItem1.Text = "最高相对高度(m):"; this.layoutControlItem1.TextSize = new System.Drawing.Size(96, 14); // // layoutControlItem2 // this.layoutControlItem2.Control = this.seMinHeight; this.layoutControlItem2.CustomizationFormText = "layoutControlItem2"; this.layoutControlItem2.Location = new System.Drawing.Point(0, 26); this.layoutControlItem2.Name = "layoutControlItem2"; this.layoutControlItem2.Size = new System.Drawing.Size(220, 26); this.layoutControlItem2.Text = "最低相对高度(m):"; this.layoutControlItem2.TextSize = new System.Drawing.Size(96, 14); // // layoutControlItem6 // this.layoutControlItem6.Control = this.btnDrawSection; this.layoutControlItem6.CustomizationFormText = "layoutControlItem6"; this.layoutControlItem6.Location = new System.Drawing.Point(0, 101); this.layoutControlItem6.Name = "layoutControlItem6"; this.layoutControlItem6.Size = new System.Drawing.Size(220, 26); this.layoutControlItem6.Text = "layoutControlItem6"; this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0); this.layoutControlItem6.TextToControlDistance = 0; this.layoutControlItem6.TextVisible = false; // // layoutControlItem3 // this.layoutControlItem3.Control = this.tbcClipDis; this.layoutControlItem3.CustomizationFormText = "远裁距离(m)"; this.layoutControlItem3.Location = new System.Drawing.Point(0, 52); this.layoutControlItem3.Name = "layoutControlItem3"; this.layoutControlItem3.Size = new System.Drawing.Size(220, 49); this.layoutControlItem3.Text = "远裁距离(m):"; this.layoutControlItem3.TextSize = new System.Drawing.Size(96, 14); // // layoutControlGroup3 // this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3"; this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] { this.layoutControlItem4, this.layoutControlItem8, this.layoutControlItem5 }); this.layoutControlGroup3.Location = new System.Drawing.Point(0, 171); this.layoutControlGroup3.Name = "layoutControlGroup3"; this.layoutControlGroup3.Size = new System.Drawing.Size(244, 96); this.layoutControlGroup3.Text = "出图参数"; // // layoutControlItem4 // this.layoutControlItem4.Control = this.spResolution; this.layoutControlItem4.CustomizationFormText = "layoutControlItem4"; this.layoutControlItem4.Location = new System.Drawing.Point(0, 0); this.layoutControlItem4.Name = "layoutControlItem4"; this.layoutControlItem4.Size = new System.Drawing.Size(163, 26); this.layoutControlItem4.Text = "出图分辨率:"; this.layoutControlItem4.TextSize = new System.Drawing.Size(96, 14); // // layoutControlItem8 // this.layoutControlItem8.Control = this.labelControl1; this.layoutControlItem8.CustomizationFormText = "layoutControlItem8"; this.layoutControlItem8.Location = new System.Drawing.Point(163, 0); this.layoutControlItem8.Name = "layoutControlItem8"; this.layoutControlItem8.Size = new System.Drawing.Size(57, 26); this.layoutControlItem8.Text = "layoutControlItem8"; this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0); this.layoutControlItem8.TextToControlDistance = 0; this.layoutControlItem8.TextVisible = false; // // layoutControlItem5 // this.layoutControlItem5.Control = this.cpeBackGround; this.layoutControlItem5.CustomizationFormText = "背景颜色:"; this.layoutControlItem5.Location = new System.Drawing.Point(0, 26); this.layoutControlItem5.Name = "layoutControlItem5"; this.layoutControlItem5.Size = new System.Drawing.Size(220, 26); this.layoutControlItem5.Text = "背景颜色:"; this.layoutControlItem5.TextSize = new System.Drawing.Size(96, 14); // // layoutControlItem7 // this.layoutControlItem7.Control = this.btnOutput; this.layoutControlItem7.CustomizationFormText = "layoutControlItem7"; this.layoutControlItem7.Location = new System.Drawing.Point(0, 267); this.layoutControlItem7.Name = "layoutControlItem7"; this.layoutControlItem7.Size = new System.Drawing.Size(244, 26); this.layoutControlItem7.Text = "layoutControlItem7"; this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0); this.layoutControlItem7.TextToControlDistance = 0; this.layoutControlItem7.TextVisible = false; // // layoutControlItem9 // this.layoutControlItem9.Control = this.ceShowImage; this.layoutControlItem9.CustomizationFormText = "layoutControlItem9"; this.layoutControlItem9.Location = new System.Drawing.Point(0, 293); this.layoutControlItem9.Name = "layoutControlItem9"; this.layoutControlItem9.Size = new System.Drawing.Size(244, 23); this.layoutControlItem9.Text = "layoutControlItem9"; this.layoutControlItem9.TextSize = new System.Drawing.Size(0, 0); this.layoutControlItem9.TextToControlDistance = 0; this.layoutControlItem9.TextVisible = false; // // UCStreetVerticalSection // this.Controls.Add(this.layoutControl1); this.Name = "UCStreetVerticalSection"; this.Size = new System.Drawing.Size(244, 366); this.Load += new System.EventHandler(this.UCStreetVerticalSection_Load); ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit(); this.layoutControl1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.ceShowImage.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbcClipDis.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.tbcClipDis)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.cpeBackGround.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.spResolution.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.seMinHeight.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.seMaxHeight.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit(); this.ResumeLayout(false); }