/// <summary> /// Edits the value by showing a slider control in the drop down. /// </summary> /// <param name="context"></param> /// <param name="provider"></param> /// <param name="value"></param> /// <returns></returns> public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value) { _dialogProvider = provider.GetService(typeof(IWindowsFormsEditorService)) as IWindowsFormsEditorService; RampSlider rs = new RampSlider(); rs.Maximum = 90; rs.Minimum = 0; rs.MaximumColor = Color.SteelBlue; rs.MinimumColor = Color.Transparent; rs.RampText = "Zenith"; rs.RampTextBehindRamp = false; rs.Value = Convert.ToDouble(value); rs.ValueChanged += RsValueChanged; rs.ShowValue = false; rs.Width = 75; rs.Height = 50; if (_dialogProvider != null) _dialogProvider.DropDownControl(rs); return (float)rs.Value; }
/// <summary> /// Edits the value by showing a slider control in the drop down. /// </summary> /// <param name="context"></param> /// <param name="provider"></param> /// <param name="value"></param> /// <returns></returns> public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value) { _dialogProvider = provider.GetService(typeof(IWindowsFormsEditorService)) as IWindowsFormsEditorService; RampSlider rs = new RampSlider { Maximum = 1, Minimum = 0, MaximumColor = Color.SteelBlue, MinimumColor = Color.Transparent, RampText = "Opacity", RampTextBehindRamp = true, Value = Convert.ToDouble(value), ShowValue = false, Width = 75, Height = 50 }; rs.ValueChanged += RsValueChanged; if (_dialogProvider != null) _dialogProvider.DropDownControl(rs); return (float)rs.Value; }
/// <summary> /// Edits the value by showing a slider control in the drop down. /// </summary> /// <param name="context">The type descriptor context.</param> /// <param name="provider">The service provider.</param> /// <param name="value">The rampslider value.</param> /// <returns>Returns the rampslider value.</returns> public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value) { _dialogProvider = provider?.GetService(typeof(IWindowsFormsEditorService)) as IWindowsFormsEditorService; RampSlider rs = new RampSlider { Maximum = 1, Minimum = 0, MaximumColor = Color.SteelBlue, MinimumColor = Color.Transparent, RampText = "Opacity", RampTextBehindRamp = true, Value = Convert.ToDouble(value), ShowValue = true, // CGX false -> true Width = 75, Height = 50 }; rs.ValueChanged += RsValueChanged; _dialogProvider?.DropDownControl(rs); return((float)rs.Value); }
/// <summary> /// Edits the value by showing a slider control in the drop down. /// </summary> /// <param name="context"></param> /// <param name="provider"></param> /// <param name="value"></param> /// <returns></returns> public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value) { _dialogProvider = provider.GetService(typeof(IWindowsFormsEditorService)) as IWindowsFormsEditorService; RampSlider rs = new RampSlider(); rs.Maximum = 90; rs.Minimum = 0; rs.MaximumColor = Color.SteelBlue; rs.MinimumColor = Color.Transparent; rs.RampText = "Zenith"; rs.RampTextBehindRamp = false; rs.Value = Convert.ToDouble(value); rs.ValueChanged += RsValueChanged; rs.ShowValue = false; rs.Width = 75; rs.Height = 50; if (_dialogProvider != null) { _dialogProvider.DropDownControl(rs); } return((float)rs.Value); }
private void InitializeComponent() { this.groupBox1 = new System.Windows.Forms.GroupBox(); this.tabColorRange = new System.Windows.Forms.TabControl(); this.tabHSL = new System.Windows.Forms.TabPage(); this.btnReverseLight = new System.Windows.Forms.Button(); this.btnReverseSat = new System.Windows.Forms.Button(); this.btnReverseHue = new System.Windows.Forms.Button(); this.sldLightness = new DotSpatial.Symbology.Forms.TwoColorSlider(); this.sldSaturation = new DotSpatial.Symbology.Forms.TwoColorSlider(); this.btnHueShift = new System.Windows.Forms.Button(); this.sldHue = new DotSpatial.Symbology.Forms.HueSlider(); this.lblHueRange = new System.Windows.Forms.Label(); this.lblSaturationRange = new System.Windows.Forms.Label(); this.lblLightnessRange = new System.Windows.Forms.Label(); this.tabRGB = new System.Windows.Forms.TabPage(); this.rampSlider2 = new DotSpatial.Symbology.Forms.RampSlider(); this.cbEndColor = new DotSpatial.Symbology.Forms.ColorButton(); this.rampSlider1 = new DotSpatial.Symbology.Forms.RampSlider(); this.cbStartColor = new DotSpatial.Symbology.Forms.ColorButton(); this.lblEndColor = new System.Windows.Forms.Label(); this.lblStartColor = new System.Windows.Forms.Label(); this.chkUseColorRange = new System.Windows.Forms.CheckBox(); this.groupBox1.SuspendLayout(); this.tabColorRange.SuspendLayout(); this.tabHSL.SuspendLayout(); this.tabRGB.SuspendLayout(); this.SuspendLayout(); // // groupBox1 // this.groupBox1.Controls.Add(this.tabColorRange); this.groupBox1.Controls.Add(this.chkUseColorRange); this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.groupBox1.Location = new System.Drawing.Point(0, 0); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(227, 219); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; // // tabColorRange // this.tabColorRange.Controls.Add(this.tabHSL); this.tabColorRange.Controls.Add(this.tabRGB); this.tabColorRange.Location = new System.Drawing.Point(6, 23); this.tabColorRange.Name = "tabColorRange"; this.tabColorRange.SelectedIndex = 0; this.tabColorRange.Size = new System.Drawing.Size(217, 189); this.tabColorRange.TabIndex = 12; // // tabHSL // this.tabHSL.Controls.Add(this.btnReverseLight); this.tabHSL.Controls.Add(this.btnReverseSat); this.tabHSL.Controls.Add(this.btnReverseHue); this.tabHSL.Controls.Add(this.sldLightness); this.tabHSL.Controls.Add(this.sldSaturation); this.tabHSL.Controls.Add(this.btnHueShift); this.tabHSL.Controls.Add(this.sldHue); this.tabHSL.Controls.Add(this.lblHueRange); this.tabHSL.Controls.Add(this.lblSaturationRange); this.tabHSL.Controls.Add(this.lblLightnessRange); this.tabHSL.Location = new System.Drawing.Point(4, 22); this.tabHSL.Name = "tabHSL"; this.tabHSL.Padding = new System.Windows.Forms.Padding(3); this.tabHSL.Size = new System.Drawing.Size(209, 163); this.tabHSL.TabIndex = 0; this.tabHSL.Text = "HSL"; this.tabHSL.UseVisualStyleBackColor = true; // // btnReverseLight // this.btnReverseLight.Image = global::DotSpatial.Symbology.Forms.SymbologyFormsImages.redbluearrows; this.btnReverseLight.Location = new System.Drawing.Point(144, 127); this.btnReverseLight.Name = "btnReverseLight"; this.btnReverseLight.Size = new System.Drawing.Size(28, 23); this.btnReverseLight.TabIndex = 9; this.btnReverseLight.UseVisualStyleBackColor = true; this.btnReverseLight.Click += new System.EventHandler(this.btnReverseLight_Click); // // btnReverseSat // this.btnReverseSat.Image = global::DotSpatial.Symbology.Forms.SymbologyFormsImages.redbluearrows; this.btnReverseSat.Location = new System.Drawing.Point(144, 78); this.btnReverseSat.Name = "btnReverseSat"; this.btnReverseSat.Size = new System.Drawing.Size(28, 23); this.btnReverseSat.TabIndex = 6; this.btnReverseSat.UseVisualStyleBackColor = true; this.btnReverseSat.Click += new System.EventHandler(this.btnReverseSat_Click); // // btnReverseHue // this.btnReverseHue.BackColor = System.Drawing.Color.Transparent; this.btnReverseHue.Image = global::DotSpatial.Symbology.Forms.SymbologyFormsImages.redbluearrows; this.btnReverseHue.Location = new System.Drawing.Point(144, 29); this.btnReverseHue.Name = "btnReverseHue"; this.btnReverseHue.Size = new System.Drawing.Size(28, 23); this.btnReverseHue.TabIndex = 2; this.btnReverseHue.UseVisualStyleBackColor = false; this.btnReverseHue.Click += new System.EventHandler(this.btnReverseHue_Click); // // sldLightness // this.sldLightness.Inverted = false; this.sldLightness.LeftHandle.Color = System.Drawing.Color.SteelBlue; this.sldLightness.LeftHandle.IsLeft = true; this.sldLightness.LeftHandle.Position = 0.0406504F; this.sldLightness.LeftHandle.RoundingRadius = 2; this.sldLightness.LeftHandle.Visible = true; this.sldLightness.LeftHandle.Width = 5; this.sldLightness.LeftValue = 0.0406504F; this.sldLightness.Location = new System.Drawing.Point(15, 127); this.sldLightness.Maximum = 1F; this.sldLightness.MaximumColor = System.Drawing.Color.White; this.sldLightness.Minimum = 0F; this.sldLightness.MinimumColor = System.Drawing.Color.Black; this.sldLightness.Name = "sldLightness"; this.sldLightness.RightHandle.Color = System.Drawing.Color.SteelBlue; this.sldLightness.RightHandle.IsLeft = false; this.sldLightness.RightHandle.Position = 0.8F; this.sldLightness.RightHandle.RoundingRadius = 2; this.sldLightness.RightHandle.Visible = true; this.sldLightness.RightHandle.Width = 5; this.sldLightness.RightValue = 0.8F; this.sldLightness.Size = new System.Drawing.Size(123, 23); this.sldLightness.TabIndex = 8; this.sldLightness.Text = "twoColorSlider2"; this.sldLightness.PositionChanging += new System.EventHandler(this.sldLightness_PositionChanging); // // sldSaturation // this.sldSaturation.Inverted = false; this.sldSaturation.LeftHandle.Color = System.Drawing.Color.SteelBlue; this.sldSaturation.LeftHandle.IsLeft = true; this.sldSaturation.LeftHandle.Position = 0.04098361F; this.sldSaturation.LeftHandle.RoundingRadius = 2; this.sldSaturation.LeftHandle.Visible = true; this.sldSaturation.LeftHandle.Width = 5; this.sldSaturation.LeftValue = 0.04098361F; this.sldSaturation.Location = new System.Drawing.Point(15, 78); this.sldSaturation.Maximum = 1F; this.sldSaturation.MaximumColor = System.Drawing.Color.Blue; this.sldSaturation.Minimum = 0F; this.sldSaturation.MinimumColor = System.Drawing.Color.White; this.sldSaturation.Name = "sldSaturation"; this.sldSaturation.RightHandle.Color = System.Drawing.Color.SteelBlue; this.sldSaturation.RightHandle.IsLeft = false; this.sldSaturation.RightHandle.Position = 0.8F; this.sldSaturation.RightHandle.RoundingRadius = 2; this.sldSaturation.RightHandle.Visible = true; this.sldSaturation.RightHandle.Width = 5; this.sldSaturation.RightValue = 0.8F; this.sldSaturation.Size = new System.Drawing.Size(122, 23); this.sldSaturation.TabIndex = 5; this.sldSaturation.Text = "twoColorSlider1"; this.sldSaturation.PositionChanging += new System.EventHandler(this.sldSaturation_PositionChanging); // // btnHueShift // this.btnHueShift.Image = global::DotSpatial.Symbology.Forms.SymbologyFormsImages.RunModel; this.btnHueShift.ImeMode = System.Windows.Forms.ImeMode.NoControl; this.btnHueShift.Location = new System.Drawing.Point(178, 29); this.btnHueShift.Name = "btnHueShift"; this.btnHueShift.Size = new System.Drawing.Size(21, 23); this.btnHueShift.TabIndex = 3; this.btnHueShift.UseVisualStyleBackColor = true; // // sldHue // this.sldHue.HueShift = 0; this.sldHue.Inverted = false; this.sldHue.LeftHandle.Color = System.Drawing.Color.SteelBlue; this.sldHue.LeftHandle.Left = true; this.sldHue.LeftHandle.Position = 14.7541F; this.sldHue.LeftHandle.RoundingRadius = 2; this.sldHue.LeftHandle.Visible = true; this.sldHue.LeftHandle.Width = 5; this.sldHue.LeftValue = 14.7541F; this.sldHue.Location = new System.Drawing.Point(16, 29); this.sldHue.Maximum = 360; this.sldHue.Minimum = 0; this.sldHue.Name = "sldHue"; this.sldHue.RightHandle.Color = System.Drawing.Color.SteelBlue; this.sldHue.RightHandle.Left = false; this.sldHue.RightHandle.Position = 288F; this.sldHue.RightHandle.RoundingRadius = 2; this.sldHue.RightHandle.Visible = true; this.sldHue.RightHandle.Width = 5; this.sldHue.RightValue = 288F; this.sldHue.Size = new System.Drawing.Size(122, 23); this.sldHue.TabIndex = 1; this.sldHue.Text = "hueSlider1"; this.sldHue.PositionChanging += new System.EventHandler(this.sldHue_PositionChanging); // // lblHueRange // this.lblHueRange.AutoSize = true; this.lblHueRange.Location = new System.Drawing.Point(9, 13); this.lblHueRange.Name = "lblHueRange"; this.lblHueRange.Size = new System.Drawing.Size(65, 13); this.lblHueRange.TabIndex = 0; this.lblHueRange.Text = "Hue Range:"; // // lblSaturationRange // this.lblSaturationRange.AutoSize = true; this.lblSaturationRange.Location = new System.Drawing.Point(9, 62); this.lblSaturationRange.Name = "lblSaturationRange"; this.lblSaturationRange.Size = new System.Drawing.Size(93, 13); this.lblSaturationRange.TabIndex = 4; this.lblSaturationRange.Text = "Saturation Range:"; // // lblLightnessRange // this.lblLightnessRange.AutoSize = true; this.lblLightnessRange.Location = new System.Drawing.Point(9, 111); this.lblLightnessRange.Name = "lblLightnessRange"; this.lblLightnessRange.Size = new System.Drawing.Size(90, 13); this.lblLightnessRange.TabIndex = 7; this.lblLightnessRange.Text = "Lightness Range:"; // // tabRGB // this.tabRGB.Controls.Add(this.rampSlider2); this.tabRGB.Controls.Add(this.rampSlider1); this.tabRGB.Controls.Add(this.lblEndColor); this.tabRGB.Controls.Add(this.lblStartColor); this.tabRGB.Controls.Add(this.cbEndColor); this.tabRGB.Controls.Add(this.cbStartColor); this.tabRGB.Location = new System.Drawing.Point(4, 22); this.tabRGB.Name = "tabRGB"; this.tabRGB.Padding = new System.Windows.Forms.Padding(3); this.tabRGB.Size = new System.Drawing.Size(209, 163); this.tabRGB.TabIndex = 1; this.tabRGB.Text = "RGB"; this.tabRGB.UseVisualStyleBackColor = true; // // rampSlider2 // this.rampSlider2.ColorButton = this.cbEndColor; this.rampSlider2.FlipRamp = false; this.rampSlider2.FlipText = false; this.rampSlider2.InvertRamp = false; this.rampSlider2.Location = new System.Drawing.Point(93, 106); this.rampSlider2.Maximum = 1D; this.rampSlider2.MaximumColor = System.Drawing.Color.Blue; this.rampSlider2.Minimum = 0D; this.rampSlider2.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.rampSlider2.Name = "rampSlider2"; this.rampSlider2.NumberFormat = "#.00"; this.rampSlider2.Orientation = System.Windows.Forms.Orientation.Horizontal; this.rampSlider2.RampRadius = 10F; this.rampSlider2.RampText = "Opacity"; this.rampSlider2.RampTextAlignment = System.Drawing.ContentAlignment.MiddleCenter; this.rampSlider2.RampTextBehindRamp = true; this.rampSlider2.RampTextColor = System.Drawing.Color.Black; this.rampSlider2.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.rampSlider2.ShowMaximum = false; this.rampSlider2.ShowMinimum = false; this.rampSlider2.ShowTicks = false; this.rampSlider2.ShowValue = false; this.rampSlider2.Size = new System.Drawing.Size(97, 25); this.rampSlider2.SliderColor = System.Drawing.Color.Blue; this.rampSlider2.SliderRadius = 4F; this.rampSlider2.TabIndex = 5; this.rampSlider2.Text = "rampSlider2"; this.rampSlider2.TickColor = System.Drawing.Color.DarkGray; this.rampSlider2.TickSpacing = 5F; this.rampSlider2.Value = 1D; // // cbEndColor // this.cbEndColor.BevelRadius = 2; this.cbEndColor.Color = System.Drawing.Color.Navy; this.cbEndColor.LaunchDialogOnClick = true; this.cbEndColor.Location = new System.Drawing.Point(33, 106); this.cbEndColor.Name = "cbEndColor"; this.cbEndColor.RoundingRadius = 4; this.cbEndColor.Size = new System.Drawing.Size(40, 25); this.cbEndColor.TabIndex = 2; this.cbEndColor.Text = "colorButton2"; this.cbEndColor.ColorChanged += new System.EventHandler(this.cbEndColor_ColorChanged); // // rampSlider1 // this.rampSlider1.ColorButton = this.cbStartColor; this.rampSlider1.FlipRamp = false; this.rampSlider1.FlipText = false; this.rampSlider1.InvertRamp = false; this.rampSlider1.Location = new System.Drawing.Point(93, 38); this.rampSlider1.Maximum = 1D; this.rampSlider1.MaximumColor = System.Drawing.Color.Blue; this.rampSlider1.Minimum = 0D; this.rampSlider1.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.rampSlider1.Name = "rampSlider1"; this.rampSlider1.NumberFormat = "#.00"; this.rampSlider1.Orientation = System.Windows.Forms.Orientation.Horizontal; this.rampSlider1.RampRadius = 10F; this.rampSlider1.RampText = "Opacity"; this.rampSlider1.RampTextAlignment = System.Drawing.ContentAlignment.MiddleCenter; this.rampSlider1.RampTextBehindRamp = true; this.rampSlider1.RampTextColor = System.Drawing.Color.Black; this.rampSlider1.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.rampSlider1.ShowMaximum = false; this.rampSlider1.ShowMinimum = false; this.rampSlider1.ShowTicks = false; this.rampSlider1.ShowValue = false; this.rampSlider1.Size = new System.Drawing.Size(97, 25); this.rampSlider1.SliderColor = System.Drawing.Color.Blue; this.rampSlider1.SliderRadius = 4F; this.rampSlider1.TabIndex = 4; this.rampSlider1.Text = "rampSlider1"; this.rampSlider1.TickColor = System.Drawing.Color.DarkGray; this.rampSlider1.TickSpacing = 5F; this.rampSlider1.Value = 1D; // // cbStartColor // this.cbStartColor.BevelRadius = 2; this.cbStartColor.Color = System.Drawing.Color.LightBlue; this.cbStartColor.LaunchDialogOnClick = true; this.cbStartColor.Location = new System.Drawing.Point(33, 38); this.cbStartColor.Name = "cbStartColor"; this.cbStartColor.RoundingRadius = 4; this.cbStartColor.Size = new System.Drawing.Size(40, 25); this.cbStartColor.TabIndex = 0; this.cbStartColor.Text = "colorButton1"; this.cbStartColor.ColorChanged += new System.EventHandler(this.cbStartColor_ColorChanged); // // lblEndColor // this.lblEndColor.AutoSize = true; this.lblEndColor.Location = new System.Drawing.Point(8, 80); this.lblEndColor.Name = "lblEndColor"; this.lblEndColor.Size = new System.Drawing.Size(53, 13); this.lblEndColor.TabIndex = 3; this.lblEndColor.Text = "&End Color"; // // lblStartColor // this.lblStartColor.AutoSize = true; this.lblStartColor.Location = new System.Drawing.Point(8, 12); this.lblStartColor.Name = "lblStartColor"; this.lblStartColor.Size = new System.Drawing.Size(56, 13); this.lblStartColor.TabIndex = 1; this.lblStartColor.Text = "&Start Color"; // // chkUseColorRange // this.chkUseColorRange.AutoSize = true; this.chkUseColorRange.Checked = true; this.chkUseColorRange.CheckState = System.Windows.Forms.CheckState.Checked; this.chkUseColorRange.Location = new System.Drawing.Point(6, 0); this.chkUseColorRange.Name = "chkUseColorRange"; this.chkUseColorRange.Size = new System.Drawing.Size(107, 17); this.chkUseColorRange.TabIndex = 11; this.chkUseColorRange.Text = "Use Color &Range"; this.chkUseColorRange.UseVisualStyleBackColor = true; this.chkUseColorRange.CheckedChanged += new System.EventHandler(this.chkUseColorRange_CheckedChanged); // // TabColorControl // this.Controls.Add(this.groupBox1); this.Name = "TabColorControl"; this.Size = new System.Drawing.Size(227, 219); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.tabColorRange.ResumeLayout(false); this.tabHSL.ResumeLayout(false); this.tabHSL.PerformLayout(); this.tabRGB.ResumeLayout(false); this.tabRGB.PerformLayout(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { ComponentResourceManager resources = new ComponentResourceManager(typeof(OutlineControl)); this.grpOutline = new GroupBox(); this.btnEditOutline = new Button(); this.cbOutlineColor = new ColorButton(); this.sldOutlineOpacity = new RampSlider(); this.label2 = new Label(); this.dbxOutlineWidth = new DoubleBox(); this.chkUseOutline = new CheckBox(); this.grpOutline.SuspendLayout(); this.SuspendLayout(); // // grpOutline // this.grpOutline.AccessibleDescription = null; this.grpOutline.AccessibleName = null; resources.ApplyResources(this.grpOutline, "grpOutline"); this.grpOutline.BackgroundImage = null; this.grpOutline.Controls.Add(this.btnEditOutline); this.grpOutline.Controls.Add(this.cbOutlineColor); this.grpOutline.Controls.Add(this.sldOutlineOpacity); this.grpOutline.Controls.Add(this.label2); this.grpOutline.Controls.Add(this.dbxOutlineWidth); this.grpOutline.Controls.Add(this.chkUseOutline); this.grpOutline.Font = null; this.grpOutline.Name = "grpOutline"; this.grpOutline.TabStop = false; // // btnEditOutline // this.btnEditOutline.AccessibleDescription = null; this.btnEditOutline.AccessibleName = null; resources.ApplyResources(this.btnEditOutline, "btnEditOutline"); this.btnEditOutline.BackgroundImage = null; this.btnEditOutline.Font = null; this.btnEditOutline.Name = "btnEditOutline"; this.btnEditOutline.UseVisualStyleBackColor = true; this.btnEditOutline.Click += new EventHandler(this.btnEditOutline_Click); // // cbOutlineColor // this.cbOutlineColor.AccessibleDescription = null; this.cbOutlineColor.AccessibleName = null; resources.ApplyResources(this.cbOutlineColor, "cbOutlineColor"); this.cbOutlineColor.BackgroundImage = null; this.cbOutlineColor.BevelRadius = 4; this.cbOutlineColor.Color = Color.Blue; this.cbOutlineColor.Font = null; this.cbOutlineColor.LaunchDialogOnClick = true; this.cbOutlineColor.Name = "cbOutlineColor"; this.cbOutlineColor.RoundingRadius = 10; this.cbOutlineColor.ColorChanged += new EventHandler(this.cbOutlineColor_ColorChanged); // // sldOutlineOpacity // this.sldOutlineOpacity.AccessibleDescription = null; this.sldOutlineOpacity.AccessibleName = null; resources.ApplyResources(this.sldOutlineOpacity, "sldOutlineOpacity"); this.sldOutlineOpacity.BackgroundImage = null; this.sldOutlineOpacity.ColorButton = null; this.sldOutlineOpacity.FlipRamp = false; this.sldOutlineOpacity.FlipText = false; this.sldOutlineOpacity.Font = null; this.sldOutlineOpacity.InvertRamp = false; this.sldOutlineOpacity.Maximum = 1; this.sldOutlineOpacity.MaximumColor = Color.CornflowerBlue; this.sldOutlineOpacity.Minimum = 0; this.sldOutlineOpacity.MinimumColor = Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.sldOutlineOpacity.Name = "sldOutlineOpacity"; this.sldOutlineOpacity.NumberFormat = null; this.sldOutlineOpacity.Orientation = Orientation.Horizontal; this.sldOutlineOpacity.RampRadius = 8F; this.sldOutlineOpacity.RampText = "Opacity"; this.sldOutlineOpacity.RampTextAlignment = ContentAlignment.BottomCenter; this.sldOutlineOpacity.RampTextBehindRamp = true; this.sldOutlineOpacity.RampTextColor = Color.Black; this.sldOutlineOpacity.RampTextFont = new Font("Microsoft Sans Serif", 12F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0))); this.sldOutlineOpacity.ShowMaximum = true; this.sldOutlineOpacity.ShowMinimum = true; this.sldOutlineOpacity.ShowTicks = true; this.sldOutlineOpacity.ShowValue = false; this.sldOutlineOpacity.SliderColor = Color.SteelBlue; this.sldOutlineOpacity.SliderRadius = 4F; this.sldOutlineOpacity.TickColor = Color.DarkGray; this.sldOutlineOpacity.TickSpacing = 5F; this.sldOutlineOpacity.Value = 0; this.sldOutlineOpacity.ValueChanged += new EventHandler(this.sldOutlineOpacity_ValueChanged); // // label2 // this.label2.AccessibleDescription = null; this.label2.AccessibleName = null; resources.ApplyResources(this.label2, "label2"); this.label2.Font = null; this.label2.Name = "label2"; // // dbxOutlineWidth // this.dbxOutlineWidth.AccessibleDescription = null; this.dbxOutlineWidth.AccessibleName = null; resources.ApplyResources(this.dbxOutlineWidth, "dbxOutlineWidth"); this.dbxOutlineWidth.BackColorInvalid = Color.Salmon; this.dbxOutlineWidth.BackColorRegular = Color.Empty; this.dbxOutlineWidth.BackgroundImage = null; this.dbxOutlineWidth.Caption = "Width:"; this.dbxOutlineWidth.Font = null; this.dbxOutlineWidth.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.dbxOutlineWidth.IsValid = true; this.dbxOutlineWidth.Name = "dbxOutlineWidth"; this.dbxOutlineWidth.NumberFormat = null; this.dbxOutlineWidth.RegularHelp = "Enter a double precision floating point value."; this.dbxOutlineWidth.Value = 0; this.dbxOutlineWidth.TextChanged += new EventHandler(this.dbxOutlineWidth_TextChanged); // // chkUseOutline // this.chkUseOutline.AccessibleDescription = null; this.chkUseOutline.AccessibleName = null; resources.ApplyResources(this.chkUseOutline, "chkUseOutline"); this.chkUseOutline.BackgroundImage = null; this.chkUseOutline.Font = null; this.chkUseOutline.Name = "chkUseOutline"; this.chkUseOutline.UseVisualStyleBackColor = true; this.chkUseOutline.CheckedChanged += new EventHandler(this.chkUseOutline_CheckedChanged); // // OutlineControl // this.AccessibleDescription = null; this.AccessibleName = null; resources.ApplyResources(this, "$this"); this.BackgroundImage = null; this.Controls.Add(this.grpOutline); this.Font = null; this.Name = "OutlineControl"; this.grpOutline.ResumeLayout(false); this.grpOutline.PerformLayout(); this.ResumeLayout(false); }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RasterCategoryControl)); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); this.ttHelp = new System.Windows.Forms.ToolTip(this.components); this.angLightDirection = new DotSpatial.Symbology.Forms.AngleControl(); this.dbxElevationFactor = new DotSpatial.Symbology.Forms.DoubleBox(); this.btnQuick = new System.Windows.Forms.Button(); this.btnRamp = new System.Windows.Forms.Button(); this.cmdRefresh = new System.Windows.Forms.Button(); this.tabScheme = new System.Windows.Forms.TabControl(); this.tabStatistics = new System.Windows.Forms.TabPage(); this.dbxMax = new DotSpatial.Symbology.Forms.DoubleBox(); this.dbxMin = new DotSpatial.Symbology.Forms.DoubleBox(); this.nudSigFig = new System.Windows.Forms.NumericUpDown(); this.lblSigFig = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.cmbIntervalSnapping = new System.Windows.Forms.ComboBox(); this.dgvStatistics = new System.Windows.Forms.DataGridView(); this.stat = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.value = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.label2 = new System.Windows.Forms.Label(); this.cmbInterval = new System.Windows.Forms.ComboBox(); this.nudCategoryCount = new System.Windows.Forms.NumericUpDown(); this.lblBreaks = new System.Windows.Forms.Label(); this.tabGraph = new System.Windows.Forms.TabPage(); this.lblColumns = new System.Windows.Forms.Label(); this.nudColumns = new System.Windows.Forms.NumericUpDown(); this.chkLog = new System.Windows.Forms.CheckBox(); this.chkShowStd = new System.Windows.Forms.CheckBox(); this.chkShowMean = new System.Windows.Forms.CheckBox(); this.breakSliderGraph1 = new DotSpatial.Symbology.Forms.BreakSliderGraph(); this.dgvCategories = new System.Windows.Forms.DataGridView(); this.colSymbol = new System.Windows.Forms.DataGridViewImageColumn(); this.colValues = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.colLegendText = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.colCount = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.chkHillshade = new System.Windows.Forms.CheckBox(); this.btnShadedRelief = new System.Windows.Forms.Button(); this.grpHillshade = new System.Windows.Forms.GroupBox(); this.btnElevation = new System.Windows.Forms.Button(); this.mwProgressBar1 = new DotSpatial.Symbology.Forms.SymbologyProgressBar(); this.tccColorRange = new DotSpatial.Symbology.Forms.TabColorControl(); this.dataGridViewImageColumn1 = new System.Windows.Forms.DataGridViewImageColumn(); this.sldSchemeOpacity = new DotSpatial.Symbology.Forms.RampSlider(); this.btnAdd = new System.Windows.Forms.Button(); this.btnDelete = new System.Windows.Forms.Button(); this.colorNoData = new DotSpatial.Symbology.Forms.ColorButton(); this.opacityNoData = new DotSpatial.Symbology.Forms.RampSlider(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.tabScheme.SuspendLayout(); this.tabStatistics.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudSigFig)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dgvStatistics)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudCategoryCount)).BeginInit(); this.tabGraph.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudColumns)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dgvCategories)).BeginInit(); this.grpHillshade.SuspendLayout(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // angLightDirection // this.angLightDirection.Angle = 45; this.angLightDirection.BackColor = System.Drawing.SystemColors.Control; resources.ApplyResources(this.angLightDirection, "angLightDirection"); this.angLightDirection.Clockwise = true; this.angLightDirection.KnobColor = System.Drawing.Color.Green; this.angLightDirection.Name = "angLightDirection"; this.angLightDirection.StartAngle = 90; this.ttHelp.SetToolTip(this.angLightDirection, resources.GetString("angLightDirection.ToolTip")); this.angLightDirection.AngleChanged += new System.EventHandler(this.angLightDirection_AngleChanged); // // dbxElevationFactor // this.dbxElevationFactor.BackColorInvalid = System.Drawing.Color.Salmon; this.dbxElevationFactor.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.dbxElevationFactor, "dbxElevationFactor"); this.dbxElevationFactor.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.dbxElevationFactor.IsValid = true; this.dbxElevationFactor.Name = "dbxElevationFactor"; this.dbxElevationFactor.NumberFormat = "E7"; this.dbxElevationFactor.RegularHelp = "The Elevation Factor is a constant multiplier that converts the elevation unit (e" + "g. feet) into the projection units (eg. decimal degrees)."; this.ttHelp.SetToolTip(this.dbxElevationFactor, resources.GetString("dbxElevationFactor.ToolTip")); this.dbxElevationFactor.Value = 0D; this.dbxElevationFactor.TextChanged += new System.EventHandler(this.dbxElevationFactor_TextChanged); // // btnQuick // resources.ApplyResources(this.btnQuick, "btnQuick"); this.btnQuick.Name = "btnQuick"; this.ttHelp.SetToolTip(this.btnQuick, resources.GetString("btnQuick.ToolTip")); this.btnQuick.UseVisualStyleBackColor = true; this.btnQuick.Click += new System.EventHandler(this.btnQuick_Click); // // btnRamp // resources.ApplyResources(this.btnRamp, "btnRamp"); this.btnRamp.Name = "btnRamp"; this.ttHelp.SetToolTip(this.btnRamp, resources.GetString("btnRamp.ToolTip")); this.btnRamp.UseVisualStyleBackColor = true; this.btnRamp.Click += new System.EventHandler(this.btnRamp_Click); // // cmdRefresh // resources.ApplyResources(this.cmdRefresh, "cmdRefresh"); this.cmdRefresh.Name = "cmdRefresh"; this.ttHelp.SetToolTip(this.cmdRefresh, resources.GetString("cmdRefresh.ToolTip")); this.cmdRefresh.UseVisualStyleBackColor = true; this.cmdRefresh.Click += new System.EventHandler(this.cmdRefresh_Click); // // tabScheme // this.tabScheme.Controls.Add(this.tabStatistics); this.tabScheme.Controls.Add(this.tabGraph); resources.ApplyResources(this.tabScheme, "tabScheme"); this.tabScheme.Name = "tabScheme"; this.tabScheme.SelectedIndex = 0; // // tabStatistics // this.tabStatistics.Controls.Add(this.dbxMax); this.tabStatistics.Controls.Add(this.dbxMin); this.tabStatistics.Controls.Add(this.nudSigFig); this.tabStatistics.Controls.Add(this.lblSigFig); this.tabStatistics.Controls.Add(this.label1); this.tabStatistics.Controls.Add(this.cmbIntervalSnapping); this.tabStatistics.Controls.Add(this.dgvStatistics); this.tabStatistics.Controls.Add(this.label2); this.tabStatistics.Controls.Add(this.cmbInterval); this.tabStatistics.Controls.Add(this.nudCategoryCount); this.tabStatistics.Controls.Add(this.lblBreaks); resources.ApplyResources(this.tabStatistics, "tabStatistics"); this.tabStatistics.Name = "tabStatistics"; this.tabStatistics.UseVisualStyleBackColor = true; // // dbxMax // this.dbxMax.BackColorInvalid = System.Drawing.Color.Salmon; this.dbxMax.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.dbxMax, "dbxMax"); this.dbxMax.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.dbxMax.IsValid = true; this.dbxMax.Name = "dbxMax"; this.dbxMax.NumberFormat = null; this.dbxMax.RegularHelp = "Enter a double precision floating point value."; this.dbxMax.Value = 1000000D; this.dbxMax.TextChanged += new System.EventHandler(this.dbxMax_TextChanged); // // dbxMin // this.dbxMin.BackColorInvalid = System.Drawing.Color.Salmon; this.dbxMin.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.dbxMin, "dbxMin"); this.dbxMin.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.dbxMin.IsValid = true; this.dbxMin.Name = "dbxMin"; this.dbxMin.NumberFormat = null; this.dbxMin.RegularHelp = "Enter a double precision floating point value."; this.dbxMin.Value = -100000D; this.dbxMin.TextChanged += new System.EventHandler(this.dbxMin_TextChanged); // // nudSigFig // resources.ApplyResources(this.nudSigFig, "nudSigFig"); this.nudSigFig.Maximum = new decimal(new int[] { 16, 0, 0, 0}); this.nudSigFig.Name = "nudSigFig"; this.nudSigFig.ValueChanged += new System.EventHandler(this.nudSigFig_ValueChanged); // // lblSigFig // resources.ApplyResources(this.lblSigFig, "lblSigFig"); this.lblSigFig.Name = "lblSigFig"; // // label1 // resources.ApplyResources(this.label1, "label1"); this.label1.Name = "label1"; // // cmbIntervalSnapping // this.cmbIntervalSnapping.FormattingEnabled = true; resources.ApplyResources(this.cmbIntervalSnapping, "cmbIntervalSnapping"); this.cmbIntervalSnapping.Name = "cmbIntervalSnapping"; this.cmbIntervalSnapping.SelectedIndexChanged += new System.EventHandler(this.cmbIntervalSnapping_SelectedIndexChanged); // // dgvStatistics // this.dgvStatistics.AllowUserToAddRows = false; this.dgvStatistics.AllowUserToDeleteRows = false; dataGridViewCellStyle1.BackColor = System.Drawing.Color.AntiqueWhite; this.dgvStatistics.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; this.dgvStatistics.BackgroundColor = System.Drawing.SystemColors.Window; dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight; dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control; dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText; dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight; dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText; dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True; this.dgvStatistics.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; this.dgvStatistics.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgvStatistics.ColumnHeadersVisible = false; this.dgvStatistics.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.stat, this.value}); resources.ApplyResources(this.dgvStatistics, "dgvStatistics"); this.dgvStatistics.Name = "dgvStatistics"; this.dgvStatistics.RowHeadersVisible = false; this.dgvStatistics.ShowCellErrors = false; // // Stat // resources.ApplyResources(this.stat, "Stat"); this.stat.Name = "Stat"; // // Value // this.value.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill; resources.ApplyResources(this.value, "Value"); this.value.Name = "Value"; // // label2 // resources.ApplyResources(this.label2, "label2"); this.label2.Name = "label2"; // // cmbInterval // this.cmbInterval.FormattingEnabled = true; this.cmbInterval.Items.AddRange(new object[] { resources.GetString("cmbInterval.Items"), resources.GetString("cmbInterval.Items1"), resources.GetString("cmbInterval.Items2")}); resources.ApplyResources(this.cmbInterval, "cmbInterval"); this.cmbInterval.Name = "cmbInterval"; this.cmbInterval.SelectedIndexChanged += new System.EventHandler(this.cmbInterval_SelectedIndexChanged); // // nudCategoryCount // resources.ApplyResources(this.nudCategoryCount, "nudCategoryCount"); this.nudCategoryCount.Name = "nudCategoryCount"; this.nudCategoryCount.Value = new decimal(new int[] { 5, 0, 0, 0}); this.nudCategoryCount.ValueChanged += new System.EventHandler(this.nudCategoryCount_ValueChanged); // // lblBreaks // resources.ApplyResources(this.lblBreaks, "lblBreaks"); this.lblBreaks.Name = "lblBreaks"; // // tabGraph // this.tabGraph.Controls.Add(this.lblColumns); this.tabGraph.Controls.Add(this.nudColumns); this.tabGraph.Controls.Add(this.chkLog); this.tabGraph.Controls.Add(this.chkShowStd); this.tabGraph.Controls.Add(this.chkShowMean); this.tabGraph.Controls.Add(this.breakSliderGraph1); resources.ApplyResources(this.tabGraph, "tabGraph"); this.tabGraph.Name = "tabGraph"; this.tabGraph.UseVisualStyleBackColor = true; // // lblColumns // resources.ApplyResources(this.lblColumns, "lblColumns"); this.lblColumns.Name = "lblColumns"; // // nudColumns // this.nudColumns.Increment = new decimal(new int[] { 10, 0, 0, 0}); resources.ApplyResources(this.nudColumns, "nudColumns"); this.nudColumns.Maximum = new decimal(new int[] { 1000, 0, 0, 0}); this.nudColumns.Minimum = new decimal(new int[] { 10, 0, 0, 0}); this.nudColumns.Name = "nudColumns"; this.nudColumns.Value = new decimal(new int[] { 40, 0, 0, 0}); this.nudColumns.ValueChanged += new System.EventHandler(this.nudColumns_ValueChanged); // // chkLog // resources.ApplyResources(this.chkLog, "chkLog"); this.chkLog.Name = "chkLog"; this.chkLog.UseVisualStyleBackColor = true; this.chkLog.CheckedChanged += new System.EventHandler(this.chkLog_CheckedChanged); // // chkShowStd // resources.ApplyResources(this.chkShowStd, "chkShowStd"); this.chkShowStd.Name = "chkShowStd"; this.chkShowStd.UseVisualStyleBackColor = true; this.chkShowStd.CheckedChanged += new System.EventHandler(this.chkShowStd_CheckedChanged); // // chkShowMean // resources.ApplyResources(this.chkShowMean, "chkShowMean"); this.chkShowMean.Name = "chkShowMean"; this.chkShowMean.UseVisualStyleBackColor = true; this.chkShowMean.CheckedChanged += new System.EventHandler(this.chkShowMean_CheckedChanged); // // breakSliderGraph1 // this.breakSliderGraph1.AttributeSource = null; this.breakSliderGraph1.BackColor = System.Drawing.Color.White; this.breakSliderGraph1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.breakSliderGraph1.BreakColor = System.Drawing.Color.Blue; this.breakSliderGraph1.BreakSelectedColor = System.Drawing.Color.Red; this.breakSliderGraph1.FontColor = System.Drawing.Color.Black; this.breakSliderGraph1.IntervalMethod = DotSpatial.Symbology.IntervalMethod.EqualInterval; resources.ApplyResources(this.breakSliderGraph1, "breakSliderGraph1"); this.breakSliderGraph1.LogY = false; this.breakSliderGraph1.MaximumSampleSize = 10000; this.breakSliderGraph1.MinHeight = 20; this.breakSliderGraph1.Name = "breakSliderGraph1"; this.breakSliderGraph1.NumColumns = 40; this.breakSliderGraph1.RasterLayer = null; this.breakSliderGraph1.Scheme = null; this.breakSliderGraph1.ShowMean = false; this.breakSliderGraph1.ShowStandardDeviation = false; this.breakSliderGraph1.Title = "Statistical Breaks:"; this.breakSliderGraph1.TitleColor = System.Drawing.Color.Black; this.breakSliderGraph1.TitleFont = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold); this.breakSliderGraph1.SliderMoved += new System.EventHandler<DotSpatial.Symbology.Forms.BreakSliderEventArgs>(this.breakSliderGraph1_SliderMoved); // // dgvCategories // this.dgvCategories.AllowUserToAddRows = false; this.dgvCategories.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill; this.dgvCategories.BackgroundColor = System.Drawing.SystemColors.Window; this.dgvCategories.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dgvCategories.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.colSymbol, this.colValues, this.colLegendText, this.colCount}); resources.ApplyResources(this.dgvCategories, "dgvCategories"); this.dgvCategories.MultiSelect = false; this.dgvCategories.Name = "dgvCategories"; this.dgvCategories.RowHeadersVisible = false; this.dgvCategories.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect; // // colSymbol // this.colSymbol.FillWeight = 49.97129F; resources.ApplyResources(this.colSymbol, "colSymbol"); this.colSymbol.Name = "colSymbol"; this.colSymbol.Resizable = System.Windows.Forms.DataGridViewTriState.True; // // colValues // this.colValues.FillWeight = 142.132F; resources.ApplyResources(this.colValues, "colValues"); this.colValues.Name = "colValues"; this.colValues.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; // // colLegendText // this.colLegendText.FillWeight = 157.008F; resources.ApplyResources(this.colLegendText, "colLegendText"); this.colLegendText.Name = "colLegendText"; // // colCount // this.colCount.FillWeight = 50.88878F; resources.ApplyResources(this.colCount, "colCount"); this.colCount.Name = "colCount"; this.colCount.ReadOnly = true; this.colCount.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; // // chkHillshade // resources.ApplyResources(this.chkHillshade, "chkHillshade"); this.chkHillshade.Name = "chkHillshade"; this.chkHillshade.UseVisualStyleBackColor = true; this.chkHillshade.CheckedChanged += new System.EventHandler(this.chkHillshade_CheckedChanged); // // btnShadedRelief // resources.ApplyResources(this.btnShadedRelief, "btnShadedRelief"); this.btnShadedRelief.Name = "btnShadedRelief"; this.btnShadedRelief.UseVisualStyleBackColor = true; this.btnShadedRelief.Click += new System.EventHandler(this.btnShadedRelief_Click); // // grpHillshade // this.grpHillshade.Controls.Add(this.btnShadedRelief); this.grpHillshade.Controls.Add(this.btnElevation); this.grpHillshade.Controls.Add(this.dbxElevationFactor); this.grpHillshade.Controls.Add(this.angLightDirection); this.grpHillshade.Controls.Add(this.chkHillshade); resources.ApplyResources(this.grpHillshade, "grpHillshade"); this.grpHillshade.Name = "grpHillshade"; this.grpHillshade.TabStop = false; // // btnElevation // this.btnElevation.Image = global::DotSpatial.Symbology.Forms.SymbologyFormsImages.ArrowDownGreen; resources.ApplyResources(this.btnElevation, "btnElevation"); this.btnElevation.Name = "btnElevation"; this.btnElevation.UseVisualStyleBackColor = true; this.btnElevation.Click += new System.EventHandler(this.btnElevation_Click); // // mwProgressBar1 // this.mwProgressBar1.FontColor = System.Drawing.Color.Black; resources.ApplyResources(this.mwProgressBar1, "mwProgressBar1"); this.mwProgressBar1.Name = "mwProgressBar1"; this.mwProgressBar1.ShowMessage = true; // // tccColorRange // this.tccColorRange.EndColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.tccColorRange.HueShift = 0; resources.ApplyResources(this.tccColorRange, "tccColorRange"); this.tccColorRange.Name = "tccColorRange"; this.tccColorRange.StartColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.tccColorRange.UseRangeChecked = true; this.tccColorRange.ColorChanged += new System.EventHandler<DotSpatial.Symbology.Forms.ColorRangeEventArgs>(this.tccColorRange_ColorChanged); // // dataGridViewImageColumn1 // this.dataGridViewImageColumn1.FillWeight = 76.14214F; resources.ApplyResources(this.dataGridViewImageColumn1, "dataGridViewImageColumn1"); this.dataGridViewImageColumn1.Name = "dataGridViewImageColumn1"; this.dataGridViewImageColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True; this.dataGridViewImageColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic; // // sldSchemeOpacity // this.sldSchemeOpacity.ColorButton = null; this.sldSchemeOpacity.FlipRamp = false; this.sldSchemeOpacity.FlipText = false; resources.ApplyResources(this.sldSchemeOpacity, "sldSchemeOpacity"); this.sldSchemeOpacity.InvertRamp = false; this.sldSchemeOpacity.Maximum = 1D; this.sldSchemeOpacity.MaximumColor = System.Drawing.Color.Green; this.sldSchemeOpacity.Minimum = 0D; this.sldSchemeOpacity.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.sldSchemeOpacity.Name = "sldSchemeOpacity"; this.sldSchemeOpacity.NumberFormat = "#.00"; this.sldSchemeOpacity.Orientation = System.Windows.Forms.Orientation.Horizontal; this.sldSchemeOpacity.RampRadius = 9F; this.sldSchemeOpacity.RampText = "Opacity"; this.sldSchemeOpacity.RampTextAlignment = System.Drawing.ContentAlignment.MiddleCenter; this.sldSchemeOpacity.RampTextBehindRamp = true; this.sldSchemeOpacity.RampTextColor = System.Drawing.Color.Black; this.sldSchemeOpacity.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.sldSchemeOpacity.ShowMaximum = false; this.sldSchemeOpacity.ShowMinimum = false; this.sldSchemeOpacity.ShowTicks = false; this.sldSchemeOpacity.ShowValue = false; this.sldSchemeOpacity.SliderColor = System.Drawing.Color.Blue; this.sldSchemeOpacity.SliderRadius = 4F; this.sldSchemeOpacity.TickColor = System.Drawing.Color.DarkGray; this.sldSchemeOpacity.TickSpacing = 5F; this.sldSchemeOpacity.Value = 1D; this.sldSchemeOpacity.ValueChanged += new System.EventHandler(this.sldSchemeOpacity_ValueChanged); // // btnAdd // this.btnAdd.Image = global::DotSpatial.Symbology.Forms.SymbologyFormsImages.add; resources.ApplyResources(this.btnAdd, "btnAdd"); this.btnAdd.Name = "btnAdd"; this.btnAdd.UseVisualStyleBackColor = true; this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); // // btnDelete // this.btnDelete.Image = global::DotSpatial.Symbology.Forms.SymbologyFormsImages.delete; resources.ApplyResources(this.btnDelete, "btnDelete"); this.btnDelete.Name = "btnDelete"; this.btnDelete.UseVisualStyleBackColor = true; this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click); // // colorNoData // this.colorNoData.BevelRadius = 0; this.colorNoData.Color = System.Drawing.Color.Transparent; this.colorNoData.LaunchDialogOnClick = true; resources.ApplyResources(this.colorNoData, "colorNoData"); this.colorNoData.Name = "colorNoData"; this.colorNoData.RoundingRadius = 3; this.colorNoData.ColorChanged += new System.EventHandler(this.colorNoData_ColorChanged); // // opacityNoData // this.opacityNoData.ColorButton = this.colorNoData; this.opacityNoData.FlipRamp = false; this.opacityNoData.FlipText = false; this.opacityNoData.InvertRamp = false; resources.ApplyResources(this.opacityNoData, "opacityNoData"); this.opacityNoData.Maximum = 1D; this.opacityNoData.MaximumColor = System.Drawing.Color.Green; this.opacityNoData.Minimum = 0D; this.opacityNoData.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.opacityNoData.Name = "opacityNoData"; this.opacityNoData.NumberFormat = "#.00"; this.opacityNoData.Orientation = System.Windows.Forms.Orientation.Horizontal; this.opacityNoData.RampRadius = 10F; this.opacityNoData.RampText = "Opacity"; this.opacityNoData.RampTextAlignment = System.Drawing.ContentAlignment.MiddleCenter; this.opacityNoData.RampTextBehindRamp = true; this.opacityNoData.RampTextColor = System.Drawing.Color.Black; this.opacityNoData.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.opacityNoData.ShowMaximum = false; this.opacityNoData.ShowMinimum = false; this.opacityNoData.ShowTicks = false; this.opacityNoData.ShowValue = false; this.opacityNoData.SliderColor = System.Drawing.Color.Blue; this.opacityNoData.SliderRadius = 4F; this.opacityNoData.TickColor = System.Drawing.Color.DarkGray; this.opacityNoData.TickSpacing = 5F; this.opacityNoData.Value = 0D; // // groupBox1 // this.groupBox1.Controls.Add(this.opacityNoData); this.groupBox1.Controls.Add(this.colorNoData); resources.ApplyResources(this.groupBox1, "groupBox1"); this.groupBox1.Name = "groupBox1"; this.groupBox1.TabStop = false; // // RasterCategoryControl // this.Controls.Add(this.groupBox1); this.Controls.Add(this.sldSchemeOpacity); this.Controls.Add(this.grpHillshade); this.Controls.Add(this.mwProgressBar1); this.Controls.Add(this.btnQuick); this.Controls.Add(this.tccColorRange); this.Controls.Add(this.tabScheme); this.Controls.Add(this.dgvCategories); this.Controls.Add(this.btnDelete); this.Controls.Add(this.btnAdd); this.Controls.Add(this.btnRamp); this.Controls.Add(this.cmdRefresh); this.Name = "RasterCategoryControl"; resources.ApplyResources(this, "$this"); this.tabScheme.ResumeLayout(false); this.tabStatistics.ResumeLayout(false); this.tabStatistics.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudSigFig)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dgvStatistics)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudCategoryCount)).EndInit(); this.tabGraph.ResumeLayout(false); this.tabGraph.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudColumns)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dgvCategories)).EndInit(); this.grpHillshade.ResumeLayout(false); this.grpHillshade.PerformLayout(); this.groupBox1.ResumeLayout(false); this.ResumeLayout(false); }
private void InitializeComponent() { this.groupBox1 = new System.Windows.Forms.GroupBox(); this.tabColorRange = new System.Windows.Forms.TabControl(); this.tabHSL = new System.Windows.Forms.TabPage(); this.btnReverseLight = new System.Windows.Forms.Button(); this.btnReverseSat = new System.Windows.Forms.Button(); this.btnReverseHue = new System.Windows.Forms.Button(); this.sldLightness = new DotSpatial.Symbology.Forms.TwoColorSlider(); this.sldSaturation = new DotSpatial.Symbology.Forms.TwoColorSlider(); this.btnHueShift = new System.Windows.Forms.Button(); this.sldHue = new DotSpatial.Symbology.Forms.HueSlider(); this.lblHueRange = new System.Windows.Forms.Label(); this.lblSaturationRange = new System.Windows.Forms.Label(); this.lblLightnessRange = new System.Windows.Forms.Label(); this.tabRGB = new System.Windows.Forms.TabPage(); this.rampSlider2 = new DotSpatial.Symbology.Forms.RampSlider(); this.cbEndColor = new DotSpatial.Symbology.Forms.ColorButton(); this.rampSlider1 = new DotSpatial.Symbology.Forms.RampSlider(); this.cbStartColor = new DotSpatial.Symbology.Forms.ColorButton(); this.lblEndColor = new System.Windows.Forms.Label(); this.lblStartColor = new System.Windows.Forms.Label(); this.chkUseColorRange = new System.Windows.Forms.CheckBox(); this.groupBox1.SuspendLayout(); this.tabColorRange.SuspendLayout(); this.tabHSL.SuspendLayout(); this.tabRGB.SuspendLayout(); this.SuspendLayout(); // // groupBox1 // this.groupBox1.Controls.Add(this.tabColorRange); this.groupBox1.Controls.Add(this.chkUseColorRange); this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.groupBox1.Location = new System.Drawing.Point(0, 0); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(227, 219); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; // // tabColorRange // this.tabColorRange.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.tabColorRange.Controls.Add(this.tabHSL); this.tabColorRange.Controls.Add(this.tabRGB); this.tabColorRange.Location = new System.Drawing.Point(6, 23); this.tabColorRange.Name = "tabColorRange"; this.tabColorRange.SelectedIndex = 0; this.tabColorRange.Size = new System.Drawing.Size(217, 189); this.tabColorRange.TabIndex = 12; // // tabHSL // this.tabHSL.Controls.Add(this.btnReverseLight); this.tabHSL.Controls.Add(this.btnReverseSat); this.tabHSL.Controls.Add(this.btnReverseHue); this.tabHSL.Controls.Add(this.sldLightness); this.tabHSL.Controls.Add(this.sldSaturation); this.tabHSL.Controls.Add(this.btnHueShift); this.tabHSL.Controls.Add(this.sldHue); this.tabHSL.Controls.Add(this.lblHueRange); this.tabHSL.Controls.Add(this.lblSaturationRange); this.tabHSL.Controls.Add(this.lblLightnessRange); this.tabHSL.Location = new System.Drawing.Point(4, 25); this.tabHSL.Name = "tabHSL"; this.tabHSL.Padding = new System.Windows.Forms.Padding(3); this.tabHSL.Size = new System.Drawing.Size(209, 160); this.tabHSL.TabIndex = 0; this.tabHSL.Text = "HSL"; this.tabHSL.UseVisualStyleBackColor = true; // // btnReverseLight // this.btnReverseLight.Image = global::DotSpatial.Symbology.Forms.SymbologyFormsImages.redbluearrows; this.btnReverseLight.Location = new System.Drawing.Point(144, 127); this.btnReverseLight.Name = "btnReverseLight"; this.btnReverseLight.Size = new System.Drawing.Size(28, 23); this.btnReverseLight.TabIndex = 9; this.btnReverseLight.UseVisualStyleBackColor = true; this.btnReverseLight.Click += new System.EventHandler(this.btnReverseLight_Click); // // btnReverseSat // this.btnReverseSat.Image = global::DotSpatial.Symbology.Forms.SymbologyFormsImages.redbluearrows; this.btnReverseSat.Location = new System.Drawing.Point(144, 78); this.btnReverseSat.Name = "btnReverseSat"; this.btnReverseSat.Size = new System.Drawing.Size(28, 23); this.btnReverseSat.TabIndex = 6; this.btnReverseSat.UseVisualStyleBackColor = true; this.btnReverseSat.Click += new System.EventHandler(this.btnReverseSat_Click); // // btnReverseHue // this.btnReverseHue.BackColor = System.Drawing.Color.Transparent; this.btnReverseHue.Image = global::DotSpatial.Symbology.Forms.SymbologyFormsImages.redbluearrows; this.btnReverseHue.Location = new System.Drawing.Point(144, 29); this.btnReverseHue.Name = "btnReverseHue"; this.btnReverseHue.Size = new System.Drawing.Size(28, 23); this.btnReverseHue.TabIndex = 2; this.btnReverseHue.UseVisualStyleBackColor = false; this.btnReverseHue.Click += new System.EventHandler(this.btnReverseHue_Click); // // sldLightness // this.sldLightness.Inverted = false; this.sldLightness.LeftHandle.Color = System.Drawing.Color.SteelBlue; this.sldLightness.LeftHandle.IsLeft = true; this.sldLightness.LeftHandle.Position = 0.0406504F; this.sldLightness.LeftHandle.RoundingRadius = 2; this.sldLightness.LeftHandle.Visible = true; this.sldLightness.LeftHandle.Width = 5; this.sldLightness.LeftValue = 0.0406504F; this.sldLightness.Location = new System.Drawing.Point(15, 127); this.sldLightness.Maximum = 1F; this.sldLightness.MaximumColor = System.Drawing.Color.White; this.sldLightness.Minimum = 0F; this.sldLightness.MinimumColor = System.Drawing.Color.Black; this.sldLightness.Name = "sldLightness"; this.sldLightness.RightHandle.Color = System.Drawing.Color.SteelBlue; this.sldLightness.RightHandle.IsLeft = false; this.sldLightness.RightHandle.Position = 0.8F; this.sldLightness.RightHandle.RoundingRadius = 2; this.sldLightness.RightHandle.Visible = true; this.sldLightness.RightHandle.Width = 5; this.sldLightness.RightValue = 0.8F; this.sldLightness.Size = new System.Drawing.Size(123, 23); this.sldLightness.TabIndex = 8; this.sldLightness.Text = "twoColorSlider2"; this.sldLightness.PositionChanging += new System.EventHandler(this.sldLightness_PositionChanging); // // sldSaturation // this.sldSaturation.Inverted = false; this.sldSaturation.LeftHandle.Color = System.Drawing.Color.SteelBlue; this.sldSaturation.LeftHandle.IsLeft = true; this.sldSaturation.LeftHandle.Position = 0.04098361F; this.sldSaturation.LeftHandle.RoundingRadius = 2; this.sldSaturation.LeftHandle.Visible = true; this.sldSaturation.LeftHandle.Width = 5; this.sldSaturation.LeftValue = 0.04098361F; this.sldSaturation.Location = new System.Drawing.Point(15, 78); this.sldSaturation.Maximum = 1F; this.sldSaturation.MaximumColor = System.Drawing.Color.Blue; this.sldSaturation.Minimum = 0F; this.sldSaturation.MinimumColor = System.Drawing.Color.White; this.sldSaturation.Name = "sldSaturation"; this.sldSaturation.RightHandle.Color = System.Drawing.Color.SteelBlue; this.sldSaturation.RightHandle.IsLeft = false; this.sldSaturation.RightHandle.Position = 0.8F; this.sldSaturation.RightHandle.RoundingRadius = 2; this.sldSaturation.RightHandle.Visible = true; this.sldSaturation.RightHandle.Width = 5; this.sldSaturation.RightValue = 0.8F; this.sldSaturation.Size = new System.Drawing.Size(122, 23); this.sldSaturation.TabIndex = 5; this.sldSaturation.Text = "twoColorSlider1"; this.sldSaturation.PositionChanging += new System.EventHandler(this.sldSaturation_PositionChanging); // // btnHueShift // this.btnHueShift.Image = global::DotSpatial.Symbology.Forms.SymbologyFormsImages.RunModel; this.btnHueShift.ImeMode = System.Windows.Forms.ImeMode.NoControl; this.btnHueShift.Location = new System.Drawing.Point(178, 29); this.btnHueShift.Name = "btnHueShift"; this.btnHueShift.Size = new System.Drawing.Size(21, 23); this.btnHueShift.TabIndex = 3; this.btnHueShift.UseVisualStyleBackColor = true; // // sldHue // this.sldHue.HueShift = 0; this.sldHue.Inverted = false; this.sldHue.LeftHandle.Color = System.Drawing.Color.SteelBlue; this.sldHue.LeftHandle.Left = true; this.sldHue.LeftHandle.Position = 14.7541F; this.sldHue.LeftHandle.RoundingRadius = 2; this.sldHue.LeftHandle.Visible = true; this.sldHue.LeftHandle.Width = 5; this.sldHue.LeftValue = 14.7541F; this.sldHue.Location = new System.Drawing.Point(16, 29); this.sldHue.Maximum = 360; this.sldHue.Minimum = 0; this.sldHue.Name = "sldHue"; this.sldHue.RightHandle.Color = System.Drawing.Color.SteelBlue; this.sldHue.RightHandle.Left = false; this.sldHue.RightHandle.Position = 288F; this.sldHue.RightHandle.RoundingRadius = 2; this.sldHue.RightHandle.Visible = true; this.sldHue.RightHandle.Width = 5; this.sldHue.RightValue = 288F; this.sldHue.Size = new System.Drawing.Size(122, 23); this.sldHue.TabIndex = 1; this.sldHue.Text = "hueSlider1"; this.sldHue.PositionChanging += new System.EventHandler(this.sldHue_PositionChanging); // // lblHueRange // this.lblHueRange.AutoSize = true; this.lblHueRange.Location = new System.Drawing.Point(9, 13); this.lblHueRange.Name = "lblHueRange"; this.lblHueRange.Size = new System.Drawing.Size(84, 17); this.lblHueRange.TabIndex = 0; this.lblHueRange.Text = "Hue Range:"; // // lblSaturationRange // this.lblSaturationRange.AutoSize = true; this.lblSaturationRange.Location = new System.Drawing.Point(9, 62); this.lblSaturationRange.Name = "lblSaturationRange"; this.lblSaturationRange.Size = new System.Drawing.Size(123, 17); this.lblSaturationRange.TabIndex = 4; this.lblSaturationRange.Text = "Saturation Range:"; // // lblLightnessRange // this.lblLightnessRange.AutoSize = true; this.lblLightnessRange.Location = new System.Drawing.Point(9, 111); this.lblLightnessRange.Name = "lblLightnessRange"; this.lblLightnessRange.Size = new System.Drawing.Size(119, 17); this.lblLightnessRange.TabIndex = 7; this.lblLightnessRange.Text = "Lightness Range:"; // // tabRGB // this.tabRGB.Controls.Add(this.rampSlider2); this.tabRGB.Controls.Add(this.rampSlider1); this.tabRGB.Controls.Add(this.lblEndColor); this.tabRGB.Controls.Add(this.lblStartColor); this.tabRGB.Controls.Add(this.cbEndColor); this.tabRGB.Controls.Add(this.cbStartColor); this.tabRGB.Location = new System.Drawing.Point(4, 25); this.tabRGB.Name = "tabRGB"; this.tabRGB.Padding = new System.Windows.Forms.Padding(3); this.tabRGB.Size = new System.Drawing.Size(209, 160); this.tabRGB.TabIndex = 1; this.tabRGB.Text = "RGB"; this.tabRGB.UseVisualStyleBackColor = true; // // rampSlider2 // this.rampSlider2.ColorButton = this.cbEndColor; this.rampSlider2.FlipRamp = false; this.rampSlider2.FlipText = false; this.rampSlider2.InvertRamp = false; this.rampSlider2.Location = new System.Drawing.Point(93, 106); this.rampSlider2.Maximum = 1D; this.rampSlider2.MaximumColor = System.Drawing.Color.Blue; this.rampSlider2.Minimum = 0D; this.rampSlider2.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.rampSlider2.Name = "rampSlider2"; this.rampSlider2.NumberFormat = "#.00"; this.rampSlider2.Orientation = System.Windows.Forms.Orientation.Horizontal; this.rampSlider2.RampRadius = 10F; this.rampSlider2.RampText = "Opacity"; this.rampSlider2.RampTextAlignment = System.Drawing.ContentAlignment.MiddleCenter; this.rampSlider2.RampTextBehindRamp = true; this.rampSlider2.RampTextColor = System.Drawing.Color.Black; this.rampSlider2.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.rampSlider2.ShowMaximum = false; this.rampSlider2.ShowMinimum = false; this.rampSlider2.ShowTicks = false; this.rampSlider2.ShowValue = false; this.rampSlider2.Size = new System.Drawing.Size(97, 25); this.rampSlider2.SliderColor = System.Drawing.Color.Blue; this.rampSlider2.SliderRadius = 4F; this.rampSlider2.TabIndex = 5; this.rampSlider2.Text = "rampSlider2"; this.rampSlider2.TickColor = System.Drawing.Color.DarkGray; this.rampSlider2.TickSpacing = 5F; this.rampSlider2.Value = 1D; // // cbEndColor // this.cbEndColor.BevelRadius = 2; this.cbEndColor.Color = System.Drawing.Color.Navy; this.cbEndColor.LaunchDialogOnClick = true; this.cbEndColor.Location = new System.Drawing.Point(33, 106); this.cbEndColor.Name = "cbEndColor"; this.cbEndColor.RoundingRadius = 4; this.cbEndColor.Size = new System.Drawing.Size(40, 25); this.cbEndColor.TabIndex = 2; this.cbEndColor.Text = "colorButton2"; this.cbEndColor.ColorChanged += new System.EventHandler(this.cbEndColor_ColorChanged); // // rampSlider1 // this.rampSlider1.ColorButton = this.cbStartColor; this.rampSlider1.FlipRamp = false; this.rampSlider1.FlipText = false; this.rampSlider1.InvertRamp = false; this.rampSlider1.Location = new System.Drawing.Point(93, 38); this.rampSlider1.Maximum = 1D; this.rampSlider1.MaximumColor = System.Drawing.Color.Blue; this.rampSlider1.Minimum = 0D; this.rampSlider1.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.rampSlider1.Name = "rampSlider1"; this.rampSlider1.NumberFormat = "#.00"; this.rampSlider1.Orientation = System.Windows.Forms.Orientation.Horizontal; this.rampSlider1.RampRadius = 10F; this.rampSlider1.RampText = "Opacity"; this.rampSlider1.RampTextAlignment = System.Drawing.ContentAlignment.MiddleCenter; this.rampSlider1.RampTextBehindRamp = true; this.rampSlider1.RampTextColor = System.Drawing.Color.Black; this.rampSlider1.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.rampSlider1.ShowMaximum = false; this.rampSlider1.ShowMinimum = false; this.rampSlider1.ShowTicks = false; this.rampSlider1.ShowValue = false; this.rampSlider1.Size = new System.Drawing.Size(97, 25); this.rampSlider1.SliderColor = System.Drawing.Color.Blue; this.rampSlider1.SliderRadius = 4F; this.rampSlider1.TabIndex = 4; this.rampSlider1.Text = "rampSlider1"; this.rampSlider1.TickColor = System.Drawing.Color.DarkGray; this.rampSlider1.TickSpacing = 5F; this.rampSlider1.Value = 1D; // // cbStartColor // this.cbStartColor.BevelRadius = 2; this.cbStartColor.Color = System.Drawing.Color.LightBlue; this.cbStartColor.LaunchDialogOnClick = true; this.cbStartColor.Location = new System.Drawing.Point(33, 38); this.cbStartColor.Name = "cbStartColor"; this.cbStartColor.RoundingRadius = 4; this.cbStartColor.Size = new System.Drawing.Size(40, 25); this.cbStartColor.TabIndex = 0; this.cbStartColor.Text = "colorButton1"; this.cbStartColor.ColorChanged += new System.EventHandler(this.cbStartColor_ColorChanged); // // lblEndColor // this.lblEndColor.AutoSize = true; this.lblEndColor.Location = new System.Drawing.Point(8, 80); this.lblEndColor.Name = "lblEndColor"; this.lblEndColor.Size = new System.Drawing.Size(70, 17); this.lblEndColor.TabIndex = 3; this.lblEndColor.Text = "&End Color"; // // lblStartColor // this.lblStartColor.AutoSize = true; this.lblStartColor.Location = new System.Drawing.Point(8, 12); this.lblStartColor.Name = "lblStartColor"; this.lblStartColor.Size = new System.Drawing.Size(75, 17); this.lblStartColor.TabIndex = 1; this.lblStartColor.Text = "&Start Color"; // // chkUseColorRange // this.chkUseColorRange.AutoSize = true; this.chkUseColorRange.Checked = true; this.chkUseColorRange.CheckState = System.Windows.Forms.CheckState.Checked; this.chkUseColorRange.Location = new System.Drawing.Point(6, 0); this.chkUseColorRange.Name = "chkUseColorRange"; this.chkUseColorRange.Size = new System.Drawing.Size(138, 21); this.chkUseColorRange.TabIndex = 11; this.chkUseColorRange.Text = "Use Color &Range"; this.chkUseColorRange.UseVisualStyleBackColor = true; this.chkUseColorRange.CheckedChanged += new System.EventHandler(this.chkUseColorRange_CheckedChanged); // // TabColorControl // this.Controls.Add(this.groupBox1); this.Name = "TabColorControl"; this.Size = new System.Drawing.Size(227, 219); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.tabColorRange.ResumeLayout(false); this.tabHSL.ResumeLayout(false); this.tabHSL.PerformLayout(); this.tabRGB.ResumeLayout(false); this.tabRGB.PerformLayout(); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DetailedPointSymbolControl)); this.btnAddToCustom = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.cmbUnits = new System.Windows.Forms.ComboBox(); this.lblUnits = new System.Windows.Forms.Label(); this.lblScaleMode = new System.Windows.Forms.Label(); this.cmbScaleMode = new System.Windows.Forms.ComboBox(); this.chkSmoothing = new System.Windows.Forms.CheckBox(); this.label3 = new System.Windows.Forms.Label(); this.lblPreview = new System.Windows.Forms.Label(); this.lblSymbolType = new System.Windows.Forms.Label(); this.cmbSymbolType = new System.Windows.Forms.ComboBox(); this.label10 = new System.Windows.Forms.Label(); this.groupBox6 = new System.Windows.Forms.GroupBox(); this.doubleBox7 = new DotSpatial.Symbology.Forms.DoubleBox(); this.doubleBox8 = new DotSpatial.Symbology.Forms.DoubleBox(); this.groupBox7 = new System.Windows.Forms.GroupBox(); this.doubleBox10 = new DotSpatial.Symbology.Forms.DoubleBox(); this.doubleBox11 = new DotSpatial.Symbology.Forms.DoubleBox(); this.ccSymbols = new DotSpatial.Symbology.Forms.SymbolCollectionControl(); this.doubleBox9 = new DotSpatial.Symbology.Forms.DoubleBox(); this.tabPicture = new System.Windows.Forms.TabPage(); this.lblImageOpacity = new System.Windows.Forms.Label(); this.grpOutlinePicture = new System.Windows.Forms.GroupBox(); this.cbOutlineColorPicture = new DotSpatial.Symbology.Forms.ColorButton(); this.sldOutlineOpacityPicture = new DotSpatial.Symbology.Forms.RampSlider(); this.lblOutlineColorPicture = new System.Windows.Forms.Label(); this.dbxOutlineWidthPicture = new DotSpatial.Symbology.Forms.DoubleBox(); this.chkUseOutlinePicture = new System.Windows.Forms.CheckBox(); this.btnBrowseImage = new System.Windows.Forms.Button(); this.txtImageFilename = new System.Windows.Forms.TextBox(); this.lblImage = new System.Windows.Forms.Label(); this.sldImageOpacity = new DotSpatial.Symbology.Forms.RampSlider(); this.tabCharacter = new System.Windows.Forms.TabPage(); this.lblColorCharacter = new System.Windows.Forms.Label(); this.txtUnicode = new System.Windows.Forms.TextBox(); this.lblUnicode = new System.Windows.Forms.Label(); this.lblFontFamily = new System.Windows.Forms.Label(); this.cbColorCharacter = new DotSpatial.Symbology.Forms.ColorButton(); this.sldOpacityCharacter = new DotSpatial.Symbology.Forms.RampSlider(); this.charCharacter = new DotSpatial.Symbology.Forms.CharacterControl(); this.cmbFontFamilly = new DotSpatial.Symbology.Forms.FontFamilyControl(); this.tabSimple = new System.Windows.Forms.TabPage(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.cbOutlineColor = new DotSpatial.Symbology.Forms.ColorButton(); this.sldOutlineOpacity = new DotSpatial.Symbology.Forms.RampSlider(); this.lblOutlineColor = new System.Windows.Forms.Label(); this.dbxOutlineWidth = new DotSpatial.Symbology.Forms.DoubleBox(); this.chkUseOutline = new System.Windows.Forms.CheckBox(); this.cmbPointShape = new System.Windows.Forms.ComboBox(); this.label2 = new System.Windows.Forms.Label(); this.lblColorSimple = new System.Windows.Forms.Label(); this.cbColorSimple = new DotSpatial.Symbology.Forms.ColorButton(); this.sldOpacitySimple = new DotSpatial.Symbology.Forms.RampSlider(); this.grpPlacement = new System.Windows.Forms.GroupBox(); this.grpOffset = new System.Windows.Forms.GroupBox(); this.dbxOffsetX = new DotSpatial.Symbology.Forms.DoubleBox(); this.dbxOffsetY = new DotSpatial.Symbology.Forms.DoubleBox(); this.angleControl = new DotSpatial.Symbology.Forms.AngleControl(); this.sizeControl = new DotSpatial.Symbology.Forms.SizeControl(); this.tabSymbolProperties = new System.Windows.Forms.TabControl(); this.groupBox1.SuspendLayout(); this.groupBox6.SuspendLayout(); this.groupBox7.SuspendLayout(); this.tabPicture.SuspendLayout(); this.grpOutlinePicture.SuspendLayout(); this.tabCharacter.SuspendLayout(); this.tabSimple.SuspendLayout(); this.groupBox2.SuspendLayout(); this.grpPlacement.SuspendLayout(); this.grpOffset.SuspendLayout(); this.tabSymbolProperties.SuspendLayout(); this.SuspendLayout(); // // btnAddToCustom // resources.ApplyResources(this.btnAddToCustom, "btnAddToCustom"); this.btnAddToCustom.Name = "btnAddToCustom"; this.btnAddToCustom.UseVisualStyleBackColor = true; this.btnAddToCustom.Click += new System.EventHandler(this.btnAddToCustom_Click); // // groupBox1 // this.groupBox1.Controls.Add(this.cmbUnits); this.groupBox1.Controls.Add(this.lblUnits); this.groupBox1.Controls.Add(this.lblScaleMode); this.groupBox1.Controls.Add(this.cmbScaleMode); this.groupBox1.Controls.Add(this.chkSmoothing); resources.ApplyResources(this.groupBox1, "groupBox1"); this.groupBox1.Name = "groupBox1"; this.groupBox1.TabStop = false; // // cmbUnits // resources.ApplyResources(this.cmbUnits, "cmbUnits"); this.cmbUnits.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbUnits.FormattingEnabled = true; this.cmbUnits.Items.AddRange(new object[] { resources.GetString("cmbUnits.Items"), resources.GetString("cmbUnits.Items1"), resources.GetString("cmbUnits.Items2"), resources.GetString("cmbUnits.Items3"), resources.GetString("cmbUnits.Items4"), resources.GetString("cmbUnits.Items5"), resources.GetString("cmbUnits.Items6")}); this.cmbUnits.Name = "cmbUnits"; this.cmbUnits.SelectedIndexChanged += new System.EventHandler(this.cmbUnits_SelectedIndexChanged); // // lblUnits // resources.ApplyResources(this.lblUnits, "lblUnits"); this.lblUnits.Name = "lblUnits"; // // lblScaleMode // resources.ApplyResources(this.lblScaleMode, "lblScaleMode"); this.lblScaleMode.Name = "lblScaleMode"; // // cmbScaleMode // resources.ApplyResources(this.cmbScaleMode, "cmbScaleMode"); this.cmbScaleMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbScaleMode.FormattingEnabled = true; this.cmbScaleMode.Items.AddRange(new object[] { resources.GetString("cmbScaleMode.Items"), resources.GetString("cmbScaleMode.Items1"), resources.GetString("cmbScaleMode.Items2")}); this.cmbScaleMode.Name = "cmbScaleMode"; this.cmbScaleMode.SelectedIndexChanged += new System.EventHandler(this.cmbScaleMode_SelectedIndexChanged); // // chkSmoothing // resources.ApplyResources(this.chkSmoothing, "chkSmoothing"); this.chkSmoothing.Name = "chkSmoothing"; this.chkSmoothing.UseVisualStyleBackColor = true; this.chkSmoothing.CheckedChanged += new System.EventHandler(this.chkSmoothing_CheckedChanged); // // label3 // resources.ApplyResources(this.label3, "label3"); this.label3.Name = "label3"; // // lblPreview // this.lblPreview.BackColor = System.Drawing.Color.White; this.lblPreview.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; resources.ApplyResources(this.lblPreview, "lblPreview"); this.lblPreview.Name = "lblPreview"; // // lblSymbolType // resources.ApplyResources(this.lblSymbolType, "lblSymbolType"); this.lblSymbolType.Name = "lblSymbolType"; // // cmbSymbolType // this.cmbSymbolType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbSymbolType.FormattingEnabled = true; this.cmbSymbolType.Items.AddRange(new object[] { resources.GetString("cmbSymbolType.Items"), resources.GetString("cmbSymbolType.Items1"), resources.GetString("cmbSymbolType.Items2")}); resources.ApplyResources(this.cmbSymbolType, "cmbSymbolType"); this.cmbSymbolType.Name = "cmbSymbolType"; this.cmbSymbolType.SelectedIndexChanged += new System.EventHandler(this.cmbSymbolType_SelectedIndexChanged); // // label10 // resources.ApplyResources(this.label10, "label10"); this.label10.Name = "label10"; // // groupBox6 // this.groupBox6.Controls.Add(this.doubleBox7); this.groupBox6.Controls.Add(this.doubleBox8); resources.ApplyResources(this.groupBox6, "groupBox6"); this.groupBox6.Name = "groupBox6"; this.groupBox6.TabStop = false; // // doubleBox7 // this.doubleBox7.BackColorInvalid = System.Drawing.Color.Salmon; this.doubleBox7.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.doubleBox7, "doubleBox7"); this.doubleBox7.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.doubleBox7.IsValid = true; this.doubleBox7.Name = "doubleBox7"; this.doubleBox7.NumberFormat = null; this.doubleBox7.RegularHelp = "Enter a double precision floating point value."; this.doubleBox7.Value = 0D; // // doubleBox8 // this.doubleBox8.BackColorInvalid = System.Drawing.Color.Salmon; this.doubleBox8.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.doubleBox8, "doubleBox8"); this.doubleBox8.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.doubleBox8.IsValid = true; this.doubleBox8.Name = "doubleBox8"; this.doubleBox8.NumberFormat = null; this.doubleBox8.RegularHelp = "Enter a double precision floating point value."; this.doubleBox8.Value = 0D; // // groupBox7 // this.groupBox7.Controls.Add(this.doubleBox10); this.groupBox7.Controls.Add(this.doubleBox11); resources.ApplyResources(this.groupBox7, "groupBox7"); this.groupBox7.Name = "groupBox7"; this.groupBox7.TabStop = false; // // doubleBox10 // this.doubleBox10.BackColorInvalid = System.Drawing.Color.Salmon; this.doubleBox10.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.doubleBox10, "doubleBox10"); this.doubleBox10.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.doubleBox10.IsValid = true; this.doubleBox10.Name = "doubleBox10"; this.doubleBox10.NumberFormat = null; this.doubleBox10.RegularHelp = "Enter a double precision floating point value."; this.doubleBox10.Value = 0D; // // doubleBox11 // this.doubleBox11.BackColorInvalid = System.Drawing.Color.Salmon; this.doubleBox11.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.doubleBox11, "doubleBox11"); this.doubleBox11.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.doubleBox11.IsValid = true; this.doubleBox11.Name = "doubleBox11"; this.doubleBox11.NumberFormat = null; this.doubleBox11.RegularHelp = "Enter a double precision floating point value."; this.doubleBox11.Value = 0D; // // ccSymbols // resources.ApplyResources(this.ccSymbols, "ccSymbols"); this.ccSymbols.ItemHeight = 40; this.ccSymbols.Name = "ccSymbols"; this.ccSymbols.ScaleMode = DotSpatial.Symbology.ScaleMode.Simple; // // doubleBox9 // this.doubleBox9.BackColorInvalid = System.Drawing.Color.Salmon; this.doubleBox9.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.doubleBox9, "doubleBox9"); this.doubleBox9.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.doubleBox9.IsValid = true; this.doubleBox9.Name = "doubleBox9"; this.doubleBox9.NumberFormat = null; this.doubleBox9.RegularHelp = "Enter a double precision floating point value."; this.doubleBox9.Value = 0D; // // tabPicture // this.tabPicture.Controls.Add(this.lblImageOpacity); this.tabPicture.Controls.Add(this.grpOutlinePicture); this.tabPicture.Controls.Add(this.btnBrowseImage); this.tabPicture.Controls.Add(this.txtImageFilename); this.tabPicture.Controls.Add(this.lblImage); this.tabPicture.Controls.Add(this.sldImageOpacity); resources.ApplyResources(this.tabPicture, "tabPicture"); this.tabPicture.Name = "tabPicture"; this.tabPicture.UseVisualStyleBackColor = true; // // lblImageOpacity // resources.ApplyResources(this.lblImageOpacity, "lblImageOpacity"); this.lblImageOpacity.Name = "lblImageOpacity"; // // grpOutlinePicture // this.grpOutlinePicture.Controls.Add(this.cbOutlineColorPicture); this.grpOutlinePicture.Controls.Add(this.sldOutlineOpacityPicture); this.grpOutlinePicture.Controls.Add(this.lblOutlineColorPicture); this.grpOutlinePicture.Controls.Add(this.dbxOutlineWidthPicture); this.grpOutlinePicture.Controls.Add(this.chkUseOutlinePicture); resources.ApplyResources(this.grpOutlinePicture, "grpOutlinePicture"); this.grpOutlinePicture.Name = "grpOutlinePicture"; this.grpOutlinePicture.TabStop = false; // // cbOutlineColorPicture // this.cbOutlineColorPicture.BevelRadius = 4; this.cbOutlineColorPicture.Color = System.Drawing.Color.Blue; this.cbOutlineColorPicture.LaunchDialogOnClick = true; resources.ApplyResources(this.cbOutlineColorPicture, "cbOutlineColorPicture"); this.cbOutlineColorPicture.Name = "cbOutlineColorPicture"; this.cbOutlineColorPicture.RoundingRadius = 10; this.cbOutlineColorPicture.ColorChanged += new System.EventHandler(this.cbOutlineColorPicture_ColorChanged); // // sldOutlineOpacityPicture // this.sldOutlineOpacityPicture.ColorButton = null; this.sldOutlineOpacityPicture.FlipRamp = false; this.sldOutlineOpacityPicture.FlipText = false; this.sldOutlineOpacityPicture.InvertRamp = false; resources.ApplyResources(this.sldOutlineOpacityPicture, "sldOutlineOpacityPicture"); this.sldOutlineOpacityPicture.Maximum = 1D; this.sldOutlineOpacityPicture.MaximumColor = System.Drawing.Color.CornflowerBlue; this.sldOutlineOpacityPicture.Minimum = 0D; this.sldOutlineOpacityPicture.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.sldOutlineOpacityPicture.Name = "sldOutlineOpacityPicture"; this.sldOutlineOpacityPicture.NumberFormat = null; this.sldOutlineOpacityPicture.Orientation = System.Windows.Forms.Orientation.Horizontal; this.sldOutlineOpacityPicture.RampRadius = 8F; this.sldOutlineOpacityPicture.RampText = "Opacity"; this.sldOutlineOpacityPicture.RampTextAlignment = System.Drawing.ContentAlignment.BottomCenter; this.sldOutlineOpacityPicture.RampTextBehindRamp = true; this.sldOutlineOpacityPicture.RampTextColor = System.Drawing.Color.Black; this.sldOutlineOpacityPicture.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.sldOutlineOpacityPicture.ShowMaximum = true; this.sldOutlineOpacityPicture.ShowMinimum = true; this.sldOutlineOpacityPicture.ShowTicks = true; this.sldOutlineOpacityPicture.ShowValue = false; this.sldOutlineOpacityPicture.SliderColor = System.Drawing.Color.Blue; this.sldOutlineOpacityPicture.SliderRadius = 4F; this.sldOutlineOpacityPicture.TickColor = System.Drawing.Color.DarkGray; this.sldOutlineOpacityPicture.TickSpacing = 5F; this.sldOutlineOpacityPicture.Value = 0D; this.sldOutlineOpacityPicture.ValueChanged += new System.EventHandler(this.sldOutlineOpacityPicture_ValueChanged); // // lblOutlineColorPicture // resources.ApplyResources(this.lblOutlineColorPicture, "lblOutlineColorPicture"); this.lblOutlineColorPicture.Name = "lblOutlineColorPicture"; // // dbxOutlineWidthPicture // this.dbxOutlineWidthPicture.BackColorInvalid = System.Drawing.Color.Salmon; this.dbxOutlineWidthPicture.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.dbxOutlineWidthPicture, "dbxOutlineWidthPicture"); this.dbxOutlineWidthPicture.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.dbxOutlineWidthPicture.IsValid = true; this.dbxOutlineWidthPicture.Name = "dbxOutlineWidthPicture"; this.dbxOutlineWidthPicture.NumberFormat = null; this.dbxOutlineWidthPicture.RegularHelp = "Enter a double precision floating point value."; this.dbxOutlineWidthPicture.Value = 0D; this.dbxOutlineWidthPicture.TextChanged += new System.EventHandler(this.dbxOutlineWidthPicture_TextChanged); // // chkUseOutlinePicture // resources.ApplyResources(this.chkUseOutlinePicture, "chkUseOutlinePicture"); this.chkUseOutlinePicture.Name = "chkUseOutlinePicture"; this.chkUseOutlinePicture.UseVisualStyleBackColor = true; this.chkUseOutlinePicture.CheckedChanged += new System.EventHandler(this.chkUseOutlinePicture_CheckedChanged); // // btnBrowseImage // resources.ApplyResources(this.btnBrowseImage, "btnBrowseImage"); this.btnBrowseImage.Name = "btnBrowseImage"; this.btnBrowseImage.UseVisualStyleBackColor = true; this.btnBrowseImage.Click += new System.EventHandler(this.btnBrowseImage_Click); // // txtImageFilename // resources.ApplyResources(this.txtImageFilename, "txtImageFilename"); this.txtImageFilename.Name = "txtImageFilename"; // // lblImage // resources.ApplyResources(this.lblImage, "lblImage"); this.lblImage.Name = "lblImage"; // // sldImageOpacity // this.sldImageOpacity.ColorButton = null; this.sldImageOpacity.FlipRamp = false; this.sldImageOpacity.FlipText = false; this.sldImageOpacity.InvertRamp = false; resources.ApplyResources(this.sldImageOpacity, "sldImageOpacity"); this.sldImageOpacity.Maximum = 1D; this.sldImageOpacity.MaximumColor = System.Drawing.Color.CornflowerBlue; this.sldImageOpacity.Minimum = 0D; this.sldImageOpacity.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.sldImageOpacity.Name = "sldImageOpacity"; this.sldImageOpacity.NumberFormat = null; this.sldImageOpacity.Orientation = System.Windows.Forms.Orientation.Horizontal; this.sldImageOpacity.RampRadius = 8F; this.sldImageOpacity.RampText = "Opacity"; this.sldImageOpacity.RampTextAlignment = System.Drawing.ContentAlignment.BottomCenter; this.sldImageOpacity.RampTextBehindRamp = true; this.sldImageOpacity.RampTextColor = System.Drawing.Color.Black; this.sldImageOpacity.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.sldImageOpacity.ShowMaximum = true; this.sldImageOpacity.ShowMinimum = true; this.sldImageOpacity.ShowTicks = true; this.sldImageOpacity.ShowValue = false; this.sldImageOpacity.SliderColor = System.Drawing.Color.Blue; this.sldImageOpacity.SliderRadius = 4F; this.sldImageOpacity.TickColor = System.Drawing.Color.DarkGray; this.sldImageOpacity.TickSpacing = 5F; this.sldImageOpacity.Value = 0D; this.sldImageOpacity.ValueChanged += new System.EventHandler(this.sldImageOpacity_ValueChanged); // // tabCharacter // this.tabCharacter.Controls.Add(this.lblColorCharacter); this.tabCharacter.Controls.Add(this.txtUnicode); this.tabCharacter.Controls.Add(this.lblUnicode); this.tabCharacter.Controls.Add(this.lblFontFamily); this.tabCharacter.Controls.Add(this.cbColorCharacter); this.tabCharacter.Controls.Add(this.sldOpacityCharacter); this.tabCharacter.Controls.Add(this.charCharacter); this.tabCharacter.Controls.Add(this.cmbFontFamilly); resources.ApplyResources(this.tabCharacter, "tabCharacter"); this.tabCharacter.Name = "tabCharacter"; this.tabCharacter.UseVisualStyleBackColor = true; // // lblColorCharacter // resources.ApplyResources(this.lblColorCharacter, "lblColorCharacter"); this.lblColorCharacter.Name = "lblColorCharacter"; // // txtUnicode // resources.ApplyResources(this.txtUnicode, "txtUnicode"); this.txtUnicode.Name = "txtUnicode"; // // lblUnicode // resources.ApplyResources(this.lblUnicode, "lblUnicode"); this.lblUnicode.Name = "lblUnicode"; // // lblFontFamily // resources.ApplyResources(this.lblFontFamily, "lblFontFamily"); this.lblFontFamily.Name = "lblFontFamily"; // // cbColorCharacter // this.cbColorCharacter.BevelRadius = 4; this.cbColorCharacter.Color = System.Drawing.Color.Blue; this.cbColorCharacter.LaunchDialogOnClick = true; resources.ApplyResources(this.cbColorCharacter, "cbColorCharacter"); this.cbColorCharacter.Name = "cbColorCharacter"; this.cbColorCharacter.RoundingRadius = 10; this.cbColorCharacter.ColorChanged += new System.EventHandler(this.cbColorCharacter_ColorChanged); // // sldOpacityCharacter // this.sldOpacityCharacter.ColorButton = null; this.sldOpacityCharacter.FlipRamp = false; this.sldOpacityCharacter.FlipText = false; this.sldOpacityCharacter.InvertRamp = false; resources.ApplyResources(this.sldOpacityCharacter, "sldOpacityCharacter"); this.sldOpacityCharacter.Maximum = 1D; this.sldOpacityCharacter.MaximumColor = System.Drawing.Color.CornflowerBlue; this.sldOpacityCharacter.Minimum = 0D; this.sldOpacityCharacter.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.sldOpacityCharacter.Name = "sldOpacityCharacter"; this.sldOpacityCharacter.NumberFormat = null; this.sldOpacityCharacter.Orientation = System.Windows.Forms.Orientation.Horizontal; this.sldOpacityCharacter.RampRadius = 12F; this.sldOpacityCharacter.RampText = "Opacity"; this.sldOpacityCharacter.RampTextAlignment = System.Drawing.ContentAlignment.BottomCenter; this.sldOpacityCharacter.RampTextBehindRamp = true; this.sldOpacityCharacter.RampTextColor = System.Drawing.Color.Black; this.sldOpacityCharacter.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.sldOpacityCharacter.ShowMaximum = false; this.sldOpacityCharacter.ShowMinimum = false; this.sldOpacityCharacter.ShowTicks = false; this.sldOpacityCharacter.ShowValue = false; this.sldOpacityCharacter.SliderColor = System.Drawing.Color.Blue; this.sldOpacityCharacter.SliderRadius = 4F; this.sldOpacityCharacter.TickColor = System.Drawing.Color.DarkGray; this.sldOpacityCharacter.TickSpacing = 5F; this.sldOpacityCharacter.Value = 0D; this.sldOpacityCharacter.ValueChanged += new System.EventHandler(this.sldOpacityCharacter_ValueChanged); // // charCharacter // this.charCharacter.CellSize = new System.Drawing.Size(22, 22); this.charCharacter.ControlRectangle = new System.Drawing.Rectangle(0, 0, 235, 149); this.charCharacter.DynamicColumns = true; resources.ApplyResources(this.charCharacter, "charCharacter"); this.charCharacter.IsInitialized = false; this.charCharacter.IsSelected = false; this.charCharacter.Name = "charCharacter"; this.charCharacter.NumColumns = 9; this.charCharacter.SelectedChar = ((byte)(0)); this.charCharacter.SelectionBackColor = System.Drawing.Color.CornflowerBlue; this.charCharacter.SelectionForeColor = System.Drawing.Color.White; this.charCharacter.TypeSet = ((byte)(0)); this.charCharacter.VerticalScrollEnabled = true; this.charCharacter.PopupClicked += new System.EventHandler(this.charCharacter_PopupClicked); // // cmbFontFamilly // resources.ApplyResources(this.cmbFontFamilly, "cmbFontFamilly"); this.cmbFontFamilly.Name = "cmbFontFamilly"; this.cmbFontFamilly.SelectedItemChanged += new System.EventHandler(this.cmbFontFamilly_SelectedItemChanged); // // tabSimple // this.tabSimple.Controls.Add(this.groupBox2); this.tabSimple.Controls.Add(this.cmbPointShape); this.tabSimple.Controls.Add(this.label2); this.tabSimple.Controls.Add(this.lblColorSimple); this.tabSimple.Controls.Add(this.cbColorSimple); this.tabSimple.Controls.Add(this.sldOpacitySimple); resources.ApplyResources(this.tabSimple, "tabSimple"); this.tabSimple.Name = "tabSimple"; this.tabSimple.UseVisualStyleBackColor = true; // // groupBox2 // this.groupBox2.Controls.Add(this.cbOutlineColor); this.groupBox2.Controls.Add(this.sldOutlineOpacity); this.groupBox2.Controls.Add(this.lblOutlineColor); this.groupBox2.Controls.Add(this.dbxOutlineWidth); this.groupBox2.Controls.Add(this.chkUseOutline); resources.ApplyResources(this.groupBox2, "groupBox2"); this.groupBox2.Name = "groupBox2"; this.groupBox2.TabStop = false; // // cbOutlineColor // this.cbOutlineColor.BevelRadius = 4; this.cbOutlineColor.Color = System.Drawing.Color.Blue; this.cbOutlineColor.LaunchDialogOnClick = true; resources.ApplyResources(this.cbOutlineColor, "cbOutlineColor"); this.cbOutlineColor.Name = "cbOutlineColor"; this.cbOutlineColor.RoundingRadius = 10; this.cbOutlineColor.ColorChanged += new System.EventHandler(this.cbOutlineColor_ColorChanged); // // sldOutlineOpacity // this.sldOutlineOpacity.ColorButton = null; this.sldOutlineOpacity.FlipRamp = false; this.sldOutlineOpacity.FlipText = false; this.sldOutlineOpacity.InvertRamp = false; resources.ApplyResources(this.sldOutlineOpacity, "sldOutlineOpacity"); this.sldOutlineOpacity.Maximum = 1D; this.sldOutlineOpacity.MaximumColor = System.Drawing.Color.CornflowerBlue; this.sldOutlineOpacity.Minimum = 0D; this.sldOutlineOpacity.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.sldOutlineOpacity.Name = "sldOutlineOpacity"; this.sldOutlineOpacity.NumberFormat = null; this.sldOutlineOpacity.Orientation = System.Windows.Forms.Orientation.Horizontal; this.sldOutlineOpacity.RampRadius = 8F; this.sldOutlineOpacity.RampText = "Opacity"; this.sldOutlineOpacity.RampTextAlignment = System.Drawing.ContentAlignment.BottomCenter; this.sldOutlineOpacity.RampTextBehindRamp = true; this.sldOutlineOpacity.RampTextColor = System.Drawing.Color.Black; this.sldOutlineOpacity.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.sldOutlineOpacity.ShowMaximum = true; this.sldOutlineOpacity.ShowMinimum = true; this.sldOutlineOpacity.ShowTicks = true; this.sldOutlineOpacity.ShowValue = false; this.sldOutlineOpacity.SliderColor = System.Drawing.Color.SteelBlue; this.sldOutlineOpacity.SliderRadius = 4F; this.sldOutlineOpacity.TickColor = System.Drawing.Color.DarkGray; this.sldOutlineOpacity.TickSpacing = 5F; this.sldOutlineOpacity.Value = 0D; this.sldOutlineOpacity.ValueChanged += new System.EventHandler(this.sldOutlineOpacity_ValueChanged); // // lblOutlineColor // resources.ApplyResources(this.lblOutlineColor, "lblOutlineColor"); this.lblOutlineColor.Name = "lblOutlineColor"; // // dbxOutlineWidth // this.dbxOutlineWidth.BackColorInvalid = System.Drawing.Color.Salmon; this.dbxOutlineWidth.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.dbxOutlineWidth, "dbxOutlineWidth"); this.dbxOutlineWidth.CausesValidation = false; this.dbxOutlineWidth.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.dbxOutlineWidth.IsValid = true; this.dbxOutlineWidth.Name = "dbxOutlineWidth"; this.dbxOutlineWidth.NumberFormat = null; this.dbxOutlineWidth.RegularHelp = "Enter a double precision floating point value."; this.dbxOutlineWidth.Value = 0D; this.dbxOutlineWidth.TextChanged += new System.EventHandler(this.dbxOutlineWidth_TextChanged); // // chkUseOutline // resources.ApplyResources(this.chkUseOutline, "chkUseOutline"); this.chkUseOutline.Name = "chkUseOutline"; this.chkUseOutline.UseVisualStyleBackColor = true; this.chkUseOutline.CheckedChanged += new System.EventHandler(this.chkUseOutline_CheckedChanged); // // cmbPointShape // this.cmbPointShape.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbPointShape.FormattingEnabled = true; this.cmbPointShape.Items.AddRange(new object[] { resources.GetString("cmbPointShape.Items"), resources.GetString("cmbPointShape.Items1"), resources.GetString("cmbPointShape.Items2"), resources.GetString("cmbPointShape.Items3"), resources.GetString("cmbPointShape.Items4"), resources.GetString("cmbPointShape.Items5"), resources.GetString("cmbPointShape.Items6")}); resources.ApplyResources(this.cmbPointShape, "cmbPointShape"); this.cmbPointShape.Name = "cmbPointShape"; this.cmbPointShape.SelectedIndexChanged += new System.EventHandler(this.cmbPointShape_SelectedIndexChanged); // // label2 // resources.ApplyResources(this.label2, "label2"); this.label2.Name = "label2"; // // lblColorSimple // resources.ApplyResources(this.lblColorSimple, "lblColorSimple"); this.lblColorSimple.Name = "lblColorSimple"; // // cbColorSimple // this.cbColorSimple.BevelRadius = 4; this.cbColorSimple.Color = System.Drawing.Color.Blue; this.cbColorSimple.LaunchDialogOnClick = true; resources.ApplyResources(this.cbColorSimple, "cbColorSimple"); this.cbColorSimple.Name = "cbColorSimple"; this.cbColorSimple.RoundingRadius = 10; this.cbColorSimple.ColorChanged += new System.EventHandler(this.cbColorSimple_ColorChanged); // // sldOpacitySimple // this.sldOpacitySimple.ColorButton = null; this.sldOpacitySimple.FlipRamp = false; this.sldOpacitySimple.FlipText = false; this.sldOpacitySimple.InvertRamp = false; resources.ApplyResources(this.sldOpacitySimple, "sldOpacitySimple"); this.sldOpacitySimple.Maximum = 1D; this.sldOpacitySimple.MaximumColor = System.Drawing.Color.CornflowerBlue; this.sldOpacitySimple.Minimum = 0D; this.sldOpacitySimple.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.sldOpacitySimple.Name = "sldOpacitySimple"; this.sldOpacitySimple.NumberFormat = null; this.sldOpacitySimple.Orientation = System.Windows.Forms.Orientation.Horizontal; this.sldOpacitySimple.RampRadius = 8F; this.sldOpacitySimple.RampText = "Opacity"; this.sldOpacitySimple.RampTextAlignment = System.Drawing.ContentAlignment.BottomCenter; this.sldOpacitySimple.RampTextBehindRamp = true; this.sldOpacitySimple.RampTextColor = System.Drawing.Color.Black; this.sldOpacitySimple.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.sldOpacitySimple.ShowMaximum = true; this.sldOpacitySimple.ShowMinimum = true; this.sldOpacitySimple.ShowTicks = true; this.sldOpacitySimple.ShowValue = false; this.sldOpacitySimple.SliderColor = System.Drawing.Color.SteelBlue; this.sldOpacitySimple.SliderRadius = 4F; this.sldOpacitySimple.TickColor = System.Drawing.Color.DarkGray; this.sldOpacitySimple.TickSpacing = 5F; this.sldOpacitySimple.Value = 0D; this.sldOpacitySimple.ValueChanged += new System.EventHandler(this.sldOpacitySimple_ValueChanged); // // grpPlacement // resources.ApplyResources(this.grpPlacement, "grpPlacement"); this.grpPlacement.Controls.Add(this.grpOffset); this.grpPlacement.Controls.Add(this.angleControl); this.grpPlacement.Controls.Add(this.sizeControl); this.grpPlacement.Name = "grpPlacement"; this.grpPlacement.TabStop = false; // // grpOffset // resources.ApplyResources(this.grpOffset, "grpOffset"); this.grpOffset.Controls.Add(this.dbxOffsetX); this.grpOffset.Controls.Add(this.dbxOffsetY); this.grpOffset.Name = "grpOffset"; this.grpOffset.TabStop = false; // // dbxOffsetX // resources.ApplyResources(this.dbxOffsetX, "dbxOffsetX"); this.dbxOffsetX.BackColorInvalid = System.Drawing.Color.Salmon; this.dbxOffsetX.BackColorRegular = System.Drawing.Color.Empty; this.dbxOffsetX.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.dbxOffsetX.IsValid = true; this.dbxOffsetX.Name = "dbxOffsetX"; this.dbxOffsetX.NumberFormat = null; this.dbxOffsetX.RegularHelp = "Enter a double precision floating point value."; this.dbxOffsetX.Value = 0D; this.dbxOffsetX.TextChanged += new System.EventHandler(this.dbxOffsetXSimple_TextChanged); // // dbxOffsetY // resources.ApplyResources(this.dbxOffsetY, "dbxOffsetY"); this.dbxOffsetY.BackColorInvalid = System.Drawing.Color.Salmon; this.dbxOffsetY.BackColorRegular = System.Drawing.Color.Empty; this.dbxOffsetY.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.dbxOffsetY.IsValid = true; this.dbxOffsetY.Name = "dbxOffsetY"; this.dbxOffsetY.NumberFormat = null; this.dbxOffsetY.RegularHelp = "Enter a double precision floating point value."; this.dbxOffsetY.Value = 0D; this.dbxOffsetY.TextChanged += new System.EventHandler(this.dbxOffsetYSimple_TextChanged); // // angleControl // this.angleControl.Angle = 0; this.angleControl.BackColor = System.Drawing.SystemColors.Control; resources.ApplyResources(this.angleControl, "angleControl"); this.angleControl.Clockwise = false; this.angleControl.KnobColor = System.Drawing.Color.SteelBlue; this.angleControl.Name = "angleControl"; this.angleControl.StartAngle = 0; this.angleControl.AngleChanged += new System.EventHandler(this.angleControlSimple_AngleChanged); // // sizeControl // resources.ApplyResources(this.sizeControl, "sizeControl"); this.sizeControl.Name = "sizeControl"; this.sizeControl.SelectedSizeChanged += new System.EventHandler(this.sizeControlSimple_SelectedSizeChanged); // // tabSymbolProperties // resources.ApplyResources(this.tabSymbolProperties, "tabSymbolProperties"); this.tabSymbolProperties.Controls.Add(this.tabSimple); this.tabSymbolProperties.Controls.Add(this.tabCharacter); this.tabSymbolProperties.Controls.Add(this.tabPicture); this.tabSymbolProperties.Name = "tabSymbolProperties"; this.tabSymbolProperties.SelectedIndex = 0; // // DetailedPointSymbolControl // this.Controls.Add(this.grpPlacement); this.Controls.Add(this.btnAddToCustom); this.Controls.Add(this.label3); this.Controls.Add(this.tabSymbolProperties); this.Controls.Add(this.lblPreview); this.Controls.Add(this.lblSymbolType); this.Controls.Add(this.cmbSymbolType); this.Controls.Add(this.groupBox1); this.Controls.Add(this.ccSymbols); this.Name = "DetailedPointSymbolControl"; resources.ApplyResources(this, "$this"); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.groupBox6.ResumeLayout(false); this.groupBox7.ResumeLayout(false); this.tabPicture.ResumeLayout(false); this.tabPicture.PerformLayout(); this.grpOutlinePicture.ResumeLayout(false); this.grpOutlinePicture.PerformLayout(); this.tabCharacter.ResumeLayout(false); this.tabCharacter.PerformLayout(); this.tabSimple.ResumeLayout(false); this.tabSimple.PerformLayout(); this.groupBox2.ResumeLayout(false); this.groupBox2.PerformLayout(); this.grpPlacement.ResumeLayout(false); this.grpOffset.ResumeLayout(false); this.grpOffset.PerformLayout(); this.tabSymbolProperties.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LabelSetup)); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.lbCategories = new System.Windows.Forms.ListBox(); this.panel3 = new System.Windows.Forms.Panel(); this.btnCategoryDown = new System.Windows.Forms.Button(); this.btnCategoryUp = new System.Windows.Forms.Button(); this.btnSubtract = new System.Windows.Forms.Button(); this.btnAdd = new System.Windows.Forms.Button(); this.panel2 = new System.Windows.Forms.Panel(); this.lblSymbolGroups = new System.Windows.Forms.Label(); this.tabs = new System.Windows.Forms.TabControl(); this.tabExpression = new System.Windows.Forms.TabPage(); this.sqlExpression = new DotSpatial.Symbology.Forms.SQLQueryControl(); this.tabBasic = new System.Windows.Forms.TabPage(); this.grbLabelRotation = new System.Windows.Forms.GroupBox(); this.cmbLabelAngleField = new System.Windows.Forms.ComboBox(); this.rbIndividualAngle = new System.Windows.Forms.RadioButton(); this.rbCommonAngle = new System.Windows.Forms.RadioButton(); this.nudAngle = new System.Windows.Forms.NumericUpDown(); this.chkPrioritizeLow = new System.Windows.Forms.CheckBox(); this.chkPreventCollision = new System.Windows.Forms.CheckBox(); this.lblPriorityField = new System.Windows.Forms.Label(); this.cmbPriorityField = new System.Windows.Forms.ComboBox(); this.gpbBorderColor = new System.Windows.Forms.GroupBox(); this.chkBorder = new System.Windows.Forms.CheckBox(); this.sldBorderOpacity = new DotSpatial.Symbology.Forms.RampSlider(); this.cbBorderColor = new DotSpatial.Symbology.Forms.ColorButton(); this.gpbFont = new System.Windows.Forms.GroupBox(); this.lblFontColor = new System.Windows.Forms.Label(); this.sldFontOpacity = new DotSpatial.Symbology.Forms.RampSlider(); this.cbFontColor = new DotSpatial.Symbology.Forms.ColorButton(); this.cmbStyle = new System.Windows.Forms.ComboBox(); this.lblFamily = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.cmbSize = new System.Windows.Forms.ComboBox(); this.label1 = new System.Windows.Forms.Label(); this.ffcFamilyName = new DotSpatial.Symbology.Forms.FontFamilyControl(); this.lblPreview = new System.Windows.Forms.Label(); this.gpbBackgroundColor = new System.Windows.Forms.GroupBox(); this.sldBackgroundOpacity = new DotSpatial.Symbology.Forms.RampSlider(); this.cbBackgroundColor = new DotSpatial.Symbology.Forms.ColorButton(); this.chkBackgroundColor = new System.Windows.Forms.CheckBox(); this.tabAdvanced = new System.Windows.Forms.TabPage(); this.labelAlignmentControl1 = new DotSpatial.Symbology.Forms.LabelAlignmentControl(); this.grpOffset = new System.Windows.Forms.GroupBox(); this.nudYOffset = new System.Windows.Forms.NumericUpDown(); this.label11 = new System.Windows.Forms.Label(); this.label12 = new System.Windows.Forms.Label(); this.nudXOffset = new System.Windows.Forms.NumericUpDown(); this.label10 = new System.Windows.Forms.Label(); this.chkHalo = new System.Windows.Forms.CheckBox(); this.chkShadow = new System.Windows.Forms.CheckBox(); this.label5 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.cmbAlignment = new System.Windows.Forms.ComboBox(); this.cmbLabelingMethod = new System.Windows.Forms.ComboBox(); this.cmbLabelParts = new System.Windows.Forms.ComboBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.clrHalo = new DotSpatial.Symbology.Forms.ColorBox(); this.gpbUseLabelShadow = new System.Windows.Forms.GroupBox(); this.nudShadowOffsetY = new System.Windows.Forms.NumericUpDown(); this.label9 = new System.Windows.Forms.Label(); this.label8 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.nudShadowOffsetX = new System.Windows.Forms.NumericUpDown(); this.sliderOpacityShadow = new DotSpatial.Symbology.Forms.RampSlider(); this.label6 = new System.Windows.Forms.Label(); this.colorButtonShadow = new DotSpatial.Symbology.Forms.ColorButton(); this.tabMembers = new System.Windows.Forms.TabPage(); this.sqlMembers = new DotSpatial.Symbology.Forms.SQLQueryControl(); this.cmdOK = new System.Windows.Forms.Button(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdApply = new System.Windows.Forms.Button(); this.lblHelp = new System.Windows.Forms.Label(); this.panel1 = new System.Windows.Forms.Panel(); this.ttLabelSetup = new System.Windows.Forms.ToolTip(this.components); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.panel3.SuspendLayout(); this.panel2.SuspendLayout(); this.tabs.SuspendLayout(); this.tabExpression.SuspendLayout(); this.tabBasic.SuspendLayout(); this.grbLabelRotation.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudAngle)).BeginInit(); this.gpbBorderColor.SuspendLayout(); this.gpbFont.SuspendLayout(); this.gpbBackgroundColor.SuspendLayout(); this.tabAdvanced.SuspendLayout(); this.grpOffset.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudYOffset)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudXOffset)).BeginInit(); this.groupBox1.SuspendLayout(); this.gpbUseLabelShadow.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudShadowOffsetY)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.nudShadowOffsetX)).BeginInit(); this.tabMembers.SuspendLayout(); this.panel1.SuspendLayout(); this.SuspendLayout(); // // splitContainer1 // resources.ApplyResources(this.splitContainer1, "splitContainer1"); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.lbCategories); this.splitContainer1.Panel1.Controls.Add(this.panel3); this.splitContainer1.Panel1.Controls.Add(this.panel2); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.tabs); // // lbCategories // resources.ApplyResources(this.lbCategories, "lbCategories"); this.lbCategories.FormattingEnabled = true; this.lbCategories.Name = "lbCategories"; this.lbCategories.SelectedIndexChanged += new System.EventHandler(this.lbCategories_SelectedIndexChanged); // // panel3 // this.panel3.Controls.Add(this.btnCategoryDown); this.panel3.Controls.Add(this.btnCategoryUp); this.panel3.Controls.Add(this.btnSubtract); this.panel3.Controls.Add(this.btnAdd); resources.ApplyResources(this.panel3, "panel3"); this.panel3.Name = "panel3"; // // btnCategoryDown // this.btnCategoryDown.Image = global::DotSpatial.Symbology.Forms.SymbologyFormsImages.down; resources.ApplyResources(this.btnCategoryDown, "btnCategoryDown"); this.btnCategoryDown.Name = "btnCategoryDown"; this.btnCategoryDown.UseVisualStyleBackColor = true; this.btnCategoryDown.Click += new System.EventHandler(this.btnCategoryDown_Click); // // btnCategoryUp // this.btnCategoryUp.Image = global::DotSpatial.Symbology.Forms.SymbologyFormsImages.up; resources.ApplyResources(this.btnCategoryUp, "btnCategoryUp"); this.btnCategoryUp.Name = "btnCategoryUp"; this.btnCategoryUp.UseVisualStyleBackColor = true; this.btnCategoryUp.Click += new System.EventHandler(this.btnCategoryUp_Click); // // btnSubtract // this.btnSubtract.Image = global::DotSpatial.Symbology.Forms.SymbologyFormsImages.mnuLayerClear; resources.ApplyResources(this.btnSubtract, "btnSubtract"); this.btnSubtract.Name = "btnSubtract"; this.btnSubtract.UseVisualStyleBackColor = true; this.btnSubtract.Click += new System.EventHandler(this.btnSubtract_Click); // // btnAdd // this.btnAdd.Image = global::DotSpatial.Symbology.Forms.SymbologyFormsImages.mnuLayerAdd; resources.ApplyResources(this.btnAdd, "btnAdd"); this.btnAdd.Name = "btnAdd"; this.btnAdd.UseVisualStyleBackColor = true; this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); // // panel2 // this.panel2.Controls.Add(this.lblSymbolGroups); resources.ApplyResources(this.panel2, "panel2"); this.panel2.Name = "panel2"; // // lblSymbolGroups // resources.ApplyResources(this.lblSymbolGroups, "lblSymbolGroups"); this.lblSymbolGroups.Name = "lblSymbolGroups"; // // tabs // this.tabs.Controls.Add(this.tabExpression); this.tabs.Controls.Add(this.tabBasic); this.tabs.Controls.Add(this.tabAdvanced); this.tabs.Controls.Add(this.tabMembers); resources.ApplyResources(this.tabs, "tabs"); this.tabs.Name = "tabs"; this.tabs.SelectedIndex = 0; // // tabExpression // this.tabExpression.Controls.Add(this.sqlExpression); resources.ApplyResources(this.tabExpression, "tabExpression"); this.tabExpression.Name = "tabExpression"; this.tabExpression.UseVisualStyleBackColor = true; // // sqlExpression // this.sqlExpression.AttributeSource = null; resources.ApplyResources(this.sqlExpression, "sqlExpression"); this.sqlExpression.ExpressionText = ""; this.sqlExpression.Name = "sqlExpression"; this.sqlExpression.Table = null; this.sqlExpression.ExpressionTextChanged += new System.EventHandler(this.sqlExpression_ExpressionTextChanged); // // tabBasic // this.tabBasic.Controls.Add(this.grbLabelRotation); this.tabBasic.Controls.Add(this.chkPrioritizeLow); this.tabBasic.Controls.Add(this.chkPreventCollision); this.tabBasic.Controls.Add(this.lblPriorityField); this.tabBasic.Controls.Add(this.cmbPriorityField); this.tabBasic.Controls.Add(this.gpbBorderColor); this.tabBasic.Controls.Add(this.gpbFont); this.tabBasic.Controls.Add(this.lblPreview); this.tabBasic.Controls.Add(this.gpbBackgroundColor); resources.ApplyResources(this.tabBasic, "tabBasic"); this.tabBasic.Name = "tabBasic"; this.tabBasic.UseVisualStyleBackColor = true; // // grbLabelRotation // this.grbLabelRotation.Controls.Add(this.cmbLabelAngleField); this.grbLabelRotation.Controls.Add(this.rbIndividualAngle); this.grbLabelRotation.Controls.Add(this.rbCommonAngle); this.grbLabelRotation.Controls.Add(this.nudAngle); resources.ApplyResources(this.grbLabelRotation, "grbLabelRotation"); this.grbLabelRotation.Name = "grbLabelRotation"; this.grbLabelRotation.TabStop = false; // // cmbLabelAngleField // this.cmbLabelAngleField.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbLabelAngleField.FormattingEnabled = true; resources.ApplyResources(this.cmbLabelAngleField, "cmbLabelAngleField"); this.cmbLabelAngleField.Name = "cmbLabelAngleField"; this.ttLabelSetup.SetToolTip(this.cmbLabelAngleField, resources.GetString("cmbLabelAngleField.ToolTip")); this.cmbLabelAngleField.SelectedIndexChanged += new System.EventHandler(this.cmbLabelAngleField_SelectedIndexChanged); // // rbIndividualAngle // resources.ApplyResources(this.rbIndividualAngle, "rbIndividualAngle"); this.rbIndividualAngle.Name = "rbIndividualAngle"; this.rbIndividualAngle.TabStop = true; this.ttLabelSetup.SetToolTip(this.rbIndividualAngle, resources.GetString("rbIndividualAngle.ToolTip")); this.rbIndividualAngle.UseVisualStyleBackColor = true; this.rbIndividualAngle.CheckedChanged += new System.EventHandler(this.rbIndividualAngle_CheckedChanged); // // rbCommonAngle // resources.ApplyResources(this.rbCommonAngle, "rbCommonAngle"); this.rbCommonAngle.Name = "rbCommonAngle"; this.rbCommonAngle.TabStop = true; this.ttLabelSetup.SetToolTip(this.rbCommonAngle, resources.GetString("rbCommonAngle.ToolTip")); this.rbCommonAngle.UseVisualStyleBackColor = true; this.rbCommonAngle.CheckedChanged += new System.EventHandler(this.rbCommonAngle_CheckedChanged); // // nudAngle // resources.ApplyResources(this.nudAngle, "nudAngle"); this.nudAngle.Maximum = new decimal(new int[] { 360, 0, 0, 0}); this.nudAngle.Minimum = new decimal(new int[] { 360, 0, 0, -2147483648}); this.nudAngle.Name = "nudAngle"; this.ttLabelSetup.SetToolTip(this.nudAngle, resources.GetString("nudAngle.ToolTip")); this.nudAngle.ValueChanged += new System.EventHandler(this.nudAngle_ValueChanged); // // chkPrioritizeLow // resources.ApplyResources(this.chkPrioritizeLow, "chkPrioritizeLow"); this.chkPrioritizeLow.Name = "chkPrioritizeLow"; this.ttLabelSetup.SetToolTip(this.chkPrioritizeLow, resources.GetString("chkPrioritizeLow.ToolTip")); this.chkPrioritizeLow.UseVisualStyleBackColor = true; this.chkPrioritizeLow.CheckedChanged += new System.EventHandler(this.chkPrioritizeLow_CheckedChanged); // // chkPreventCollision // resources.ApplyResources(this.chkPreventCollision, "chkPreventCollision"); this.chkPreventCollision.Checked = true; this.chkPreventCollision.CheckState = System.Windows.Forms.CheckState.Checked; this.chkPreventCollision.Name = "chkPreventCollision"; this.ttLabelSetup.SetToolTip(this.chkPreventCollision, resources.GetString("chkPreventCollision.ToolTip")); this.chkPreventCollision.UseVisualStyleBackColor = true; this.chkPreventCollision.CheckedChanged += new System.EventHandler(this.chkPreventCollision_CheckedChanged); // // lblPriorityField // resources.ApplyResources(this.lblPriorityField, "lblPriorityField"); this.lblPriorityField.Name = "lblPriorityField"; // // cmbPriorityField // this.cmbPriorityField.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbPriorityField.FormattingEnabled = true; resources.ApplyResources(this.cmbPriorityField, "cmbPriorityField"); this.cmbPriorityField.Name = "cmbPriorityField"; this.ttLabelSetup.SetToolTip(this.cmbPriorityField, resources.GetString("cmbPriorityField.ToolTip")); this.cmbPriorityField.SelectedIndexChanged += new System.EventHandler(this.cmbPriorityField_SelectedIndexChanged); // // gpbBorderColor // this.gpbBorderColor.Controls.Add(this.chkBorder); this.gpbBorderColor.Controls.Add(this.sldBorderOpacity); this.gpbBorderColor.Controls.Add(this.cbBorderColor); resources.ApplyResources(this.gpbBorderColor, "gpbBorderColor"); this.gpbBorderColor.Name = "gpbBorderColor"; this.gpbBorderColor.TabStop = false; // // chkBorder // resources.ApplyResources(this.chkBorder, "chkBorder"); this.chkBorder.Checked = true; this.chkBorder.CheckState = System.Windows.Forms.CheckState.Checked; this.chkBorder.Name = "chkBorder"; this.chkBorder.UseVisualStyleBackColor = true; this.chkBorder.CheckedChanged += new System.EventHandler(this.chkBorder_CheckedChanged); // // sldBorderOpacity // this.sldBorderOpacity.ColorButton = this.cbBorderColor; this.sldBorderOpacity.FlipRamp = false; this.sldBorderOpacity.FlipText = false; this.sldBorderOpacity.InvertRamp = false; resources.ApplyResources(this.sldBorderOpacity, "sldBorderOpacity"); this.sldBorderOpacity.Maximum = 1D; this.sldBorderOpacity.MaximumColor = System.Drawing.Color.Green; this.sldBorderOpacity.Minimum = 0D; this.sldBorderOpacity.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.sldBorderOpacity.Name = "sldBorderOpacity"; this.sldBorderOpacity.NumberFormat = null; this.sldBorderOpacity.Orientation = System.Windows.Forms.Orientation.Horizontal; this.sldBorderOpacity.RampRadius = 10F; this.sldBorderOpacity.RampText = "Opacity"; this.sldBorderOpacity.RampTextAlignment = System.Drawing.ContentAlignment.MiddleCenter; this.sldBorderOpacity.RampTextBehindRamp = true; this.sldBorderOpacity.RampTextColor = System.Drawing.Color.Black; this.sldBorderOpacity.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.sldBorderOpacity.ShowMaximum = true; this.sldBorderOpacity.ShowMinimum = true; this.sldBorderOpacity.ShowTicks = false; this.sldBorderOpacity.ShowValue = false; this.sldBorderOpacity.SliderColor = System.Drawing.Color.Blue; this.sldBorderOpacity.SliderRadius = 4F; this.sldBorderOpacity.TickColor = System.Drawing.Color.DarkGray; this.sldBorderOpacity.TickSpacing = 5F; this.sldBorderOpacity.Value = 1D; // // cbBorderColor // this.cbBorderColor.BevelRadius = 2; this.cbBorderColor.Color = System.Drawing.Color.Blue; this.cbBorderColor.LaunchDialogOnClick = true; resources.ApplyResources(this.cbBorderColor, "cbBorderColor"); this.cbBorderColor.Name = "cbBorderColor"; this.cbBorderColor.RoundingRadius = 4; this.cbBorderColor.ColorChanged += new System.EventHandler(this.cbBorderColor_ColorChanged); // // gpbFont // this.gpbFont.Controls.Add(this.lblFontColor); this.gpbFont.Controls.Add(this.sldFontOpacity); this.gpbFont.Controls.Add(this.cbFontColor); this.gpbFont.Controls.Add(this.cmbStyle); this.gpbFont.Controls.Add(this.lblFamily); this.gpbFont.Controls.Add(this.label2); this.gpbFont.Controls.Add(this.cmbSize); this.gpbFont.Controls.Add(this.label1); this.gpbFont.Controls.Add(this.ffcFamilyName); resources.ApplyResources(this.gpbFont, "gpbFont"); this.gpbFont.Name = "gpbFont"; this.gpbFont.TabStop = false; // // lblFontColor // resources.ApplyResources(this.lblFontColor, "lblFontColor"); this.lblFontColor.Name = "lblFontColor"; // // sldFontOpacity // this.sldFontOpacity.ColorButton = this.cbFontColor; this.sldFontOpacity.FlipRamp = false; this.sldFontOpacity.FlipText = false; this.sldFontOpacity.InvertRamp = false; resources.ApplyResources(this.sldFontOpacity, "sldFontOpacity"); this.sldFontOpacity.Maximum = 1D; this.sldFontOpacity.MaximumColor = System.Drawing.Color.Green; this.sldFontOpacity.Minimum = 0D; this.sldFontOpacity.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.sldFontOpacity.Name = "sldFontOpacity"; this.sldFontOpacity.NumberFormat = null; this.sldFontOpacity.Orientation = System.Windows.Forms.Orientation.Horizontal; this.sldFontOpacity.RampRadius = 10F; this.sldFontOpacity.RampText = "Opacity"; this.sldFontOpacity.RampTextAlignment = System.Drawing.ContentAlignment.MiddleCenter; this.sldFontOpacity.RampTextBehindRamp = true; this.sldFontOpacity.RampTextColor = System.Drawing.Color.Black; this.sldFontOpacity.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.sldFontOpacity.ShowMaximum = true; this.sldFontOpacity.ShowMinimum = true; this.sldFontOpacity.ShowTicks = false; this.sldFontOpacity.ShowValue = false; this.sldFontOpacity.SliderColor = System.Drawing.Color.Blue; this.sldFontOpacity.SliderRadius = 4F; this.sldFontOpacity.TickColor = System.Drawing.Color.DarkGray; this.sldFontOpacity.TickSpacing = 5F; this.sldFontOpacity.Value = 1D; // // cbFontColor // this.cbFontColor.BevelRadius = 2; this.cbFontColor.Color = System.Drawing.Color.Blue; this.cbFontColor.LaunchDialogOnClick = true; resources.ApplyResources(this.cbFontColor, "cbFontColor"); this.cbFontColor.Name = "cbFontColor"; this.cbFontColor.RoundingRadius = 4; this.cbFontColor.ColorChanged += new System.EventHandler(this.cbFontColor_ColorChanged); // // cmbStyle // this.cmbStyle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbStyle.FormattingEnabled = true; resources.ApplyResources(this.cmbStyle, "cmbStyle"); this.cmbStyle.Name = "cmbStyle"; this.cmbStyle.SelectedIndexChanged += new System.EventHandler(this.cmbStyle_SelectedIndexChanged); // // lblFamily // resources.ApplyResources(this.lblFamily, "lblFamily"); this.lblFamily.Name = "lblFamily"; // // label2 // resources.ApplyResources(this.label2, "label2"); this.label2.Name = "label2"; // // cmbSize // this.cmbSize.FormattingEnabled = true; this.cmbSize.Items.AddRange(new object[] { resources.GetString("cmbSize.Items"), resources.GetString("cmbSize.Items1"), resources.GetString("cmbSize.Items2"), resources.GetString("cmbSize.Items3"), resources.GetString("cmbSize.Items4"), resources.GetString("cmbSize.Items5"), resources.GetString("cmbSize.Items6"), resources.GetString("cmbSize.Items7"), resources.GetString("cmbSize.Items8"), resources.GetString("cmbSize.Items9"), resources.GetString("cmbSize.Items10"), resources.GetString("cmbSize.Items11"), resources.GetString("cmbSize.Items12"), resources.GetString("cmbSize.Items13"), resources.GetString("cmbSize.Items14"), resources.GetString("cmbSize.Items15"), resources.GetString("cmbSize.Items16")}); resources.ApplyResources(this.cmbSize, "cmbSize"); this.cmbSize.Name = "cmbSize"; this.cmbSize.SelectedIndexChanged += new System.EventHandler(this.cmbSize_SelectedIndexChanged); // // label1 // resources.ApplyResources(this.label1, "label1"); this.label1.Name = "label1"; // // ffcFamilyName // resources.ApplyResources(this.ffcFamilyName, "ffcFamilyName"); this.ffcFamilyName.Name = "ffcFamilyName"; this.ffcFamilyName.SelectedItemChanged += new System.EventHandler(this.fontFamilyControl1_SelectedItemChanged); // // lblPreview // this.lblPreview.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; resources.ApplyResources(this.lblPreview, "lblPreview"); this.lblPreview.Name = "lblPreview"; // // gpbBackgroundColor // this.gpbBackgroundColor.Controls.Add(this.sldBackgroundOpacity); this.gpbBackgroundColor.Controls.Add(this.cbBackgroundColor); this.gpbBackgroundColor.Controls.Add(this.chkBackgroundColor); resources.ApplyResources(this.gpbBackgroundColor, "gpbBackgroundColor"); this.gpbBackgroundColor.Name = "gpbBackgroundColor"; this.gpbBackgroundColor.TabStop = false; this.gpbBackgroundColor.Enter += new System.EventHandler(this.gpbBackgroundColor_Enter); // // sldBackgroundOpacity // this.sldBackgroundOpacity.ColorButton = this.cbBackgroundColor; this.sldBackgroundOpacity.FlipRamp = false; this.sldBackgroundOpacity.FlipText = false; this.sldBackgroundOpacity.InvertRamp = false; resources.ApplyResources(this.sldBackgroundOpacity, "sldBackgroundOpacity"); this.sldBackgroundOpacity.Maximum = 1D; this.sldBackgroundOpacity.MaximumColor = System.Drawing.Color.Green; this.sldBackgroundOpacity.Minimum = 0D; this.sldBackgroundOpacity.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.sldBackgroundOpacity.Name = "sldBackgroundOpacity"; this.sldBackgroundOpacity.NumberFormat = null; this.sldBackgroundOpacity.Orientation = System.Windows.Forms.Orientation.Horizontal; this.sldBackgroundOpacity.RampRadius = 10F; this.sldBackgroundOpacity.RampText = "Opacity"; this.sldBackgroundOpacity.RampTextAlignment = System.Drawing.ContentAlignment.MiddleCenter; this.sldBackgroundOpacity.RampTextBehindRamp = true; this.sldBackgroundOpacity.RampTextColor = System.Drawing.Color.Black; this.sldBackgroundOpacity.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.sldBackgroundOpacity.ShowMaximum = true; this.sldBackgroundOpacity.ShowMinimum = true; this.sldBackgroundOpacity.ShowTicks = false; this.sldBackgroundOpacity.ShowValue = false; this.sldBackgroundOpacity.SliderColor = System.Drawing.Color.Blue; this.sldBackgroundOpacity.SliderRadius = 4F; this.sldBackgroundOpacity.TickColor = System.Drawing.Color.DarkGray; this.sldBackgroundOpacity.TickSpacing = 5F; this.sldBackgroundOpacity.Value = 1D; this.sldBackgroundOpacity.ValueChanged += new System.EventHandler(this.rampSlider1_ValueChanged); // // cbBackgroundColor // this.cbBackgroundColor.BevelRadius = 2; this.cbBackgroundColor.Color = System.Drawing.Color.Blue; this.cbBackgroundColor.LaunchDialogOnClick = true; resources.ApplyResources(this.cbBackgroundColor, "cbBackgroundColor"); this.cbBackgroundColor.Name = "cbBackgroundColor"; this.cbBackgroundColor.RoundingRadius = 4; this.cbBackgroundColor.ColorChanged += new System.EventHandler(this.cbBackgroundColor_ColorChanged); // // chkBackgroundColor // resources.ApplyResources(this.chkBackgroundColor, "chkBackgroundColor"); this.chkBackgroundColor.Checked = true; this.chkBackgroundColor.CheckState = System.Windows.Forms.CheckState.Checked; this.chkBackgroundColor.Name = "chkBackgroundColor"; this.chkBackgroundColor.UseVisualStyleBackColor = true; this.chkBackgroundColor.CheckedChanged += new System.EventHandler(this.chkBackgroundColor_CheckedChanged); // // tabAdvanced // this.tabAdvanced.Controls.Add(this.labelAlignmentControl1); this.tabAdvanced.Controls.Add(this.grpOffset); this.tabAdvanced.Controls.Add(this.label10); this.tabAdvanced.Controls.Add(this.chkHalo); this.tabAdvanced.Controls.Add(this.chkShadow); this.tabAdvanced.Controls.Add(this.label5); this.tabAdvanced.Controls.Add(this.label4); this.tabAdvanced.Controls.Add(this.label3); this.tabAdvanced.Controls.Add(this.cmbAlignment); this.tabAdvanced.Controls.Add(this.cmbLabelingMethod); this.tabAdvanced.Controls.Add(this.cmbLabelParts); this.tabAdvanced.Controls.Add(this.groupBox1); this.tabAdvanced.Controls.Add(this.gpbUseLabelShadow); resources.ApplyResources(this.tabAdvanced, "tabAdvanced"); this.tabAdvanced.Name = "tabAdvanced"; this.tabAdvanced.UseVisualStyleBackColor = true; // // labelAlignmentControl1 // this.labelAlignmentControl1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; resources.ApplyResources(this.labelAlignmentControl1, "labelAlignmentControl1"); this.labelAlignmentControl1.Name = "labelAlignmentControl1"; this.labelAlignmentControl1.Value = System.Drawing.ContentAlignment.MiddleCenter; this.labelAlignmentControl1.ValueChanged += new System.EventHandler(this.labelAlignmentControl1_ValueChanged); // // grpOffset // this.grpOffset.Controls.Add(this.nudYOffset); this.grpOffset.Controls.Add(this.label11); this.grpOffset.Controls.Add(this.label12); this.grpOffset.Controls.Add(this.nudXOffset); resources.ApplyResources(this.grpOffset, "grpOffset"); this.grpOffset.Name = "grpOffset"; this.grpOffset.TabStop = false; // // nudYOffset // this.nudYOffset.DecimalPlaces = 2; resources.ApplyResources(this.nudYOffset, "nudYOffset"); this.nudYOffset.Maximum = new decimal(new int[] { 256, 0, 0, 0}); this.nudYOffset.Minimum = new decimal(new int[] { 256, 0, 0, -2147483648}); this.nudYOffset.Name = "nudYOffset"; this.nudYOffset.ValueChanged += new System.EventHandler(this.nudYOffset_ValueChanged); // // label11 // resources.ApplyResources(this.label11, "label11"); this.label11.Name = "label11"; // // label12 // resources.ApplyResources(this.label12, "label12"); this.label12.Name = "label12"; // // nudXOffset // this.nudXOffset.DecimalPlaces = 2; resources.ApplyResources(this.nudXOffset, "nudXOffset"); this.nudXOffset.Maximum = new decimal(new int[] { 256, 0, 0, 0}); this.nudXOffset.Minimum = new decimal(new int[] { 256, 0, 0, -2147483648}); this.nudXOffset.Name = "nudXOffset"; this.nudXOffset.ValueChanged += new System.EventHandler(this.nudXOffset_ValueChanged); // // label10 // resources.ApplyResources(this.label10, "label10"); this.label10.Name = "label10"; // // chkHalo // resources.ApplyResources(this.chkHalo, "chkHalo"); this.chkHalo.Checked = true; this.chkHalo.CheckState = System.Windows.Forms.CheckState.Checked; this.chkHalo.Name = "chkHalo"; this.chkHalo.UseVisualStyleBackColor = true; this.chkHalo.CheckedChanged += new System.EventHandler(this.chkHalo_CheckedChanged); // // chkShadow // resources.ApplyResources(this.chkShadow, "chkShadow"); this.chkShadow.Checked = true; this.chkShadow.CheckState = System.Windows.Forms.CheckState.Checked; this.chkShadow.Name = "chkShadow"; this.chkShadow.UseVisualStyleBackColor = true; this.chkShadow.CheckedChanged += new System.EventHandler(this.chkShadow_CheckedChanged); // // label5 // resources.ApplyResources(this.label5, "label5"); this.label5.Name = "label5"; // // label4 // resources.ApplyResources(this.label4, "label4"); this.label4.Name = "label4"; // // label3 // resources.ApplyResources(this.label3, "label3"); this.label3.Name = "label3"; // // cmbAlignment // this.cmbAlignment.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbAlignment.FormattingEnabled = true; this.cmbAlignment.Items.AddRange(new object[] { resources.GetString("cmbAlignment.Items"), resources.GetString("cmbAlignment.Items1"), resources.GetString("cmbAlignment.Items2")}); resources.ApplyResources(this.cmbAlignment, "cmbAlignment"); this.cmbAlignment.Name = "cmbAlignment"; this.cmbAlignment.SelectedIndexChanged += new System.EventHandler(this.cmbAlignment_SelectedIndexChanged); // // cmbLabelingMethod // this.cmbLabelingMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbLabelingMethod.FormattingEnabled = true; resources.ApplyResources(this.cmbLabelingMethod, "cmbLabelingMethod"); this.cmbLabelingMethod.Name = "cmbLabelingMethod"; this.cmbLabelingMethod.SelectedIndexChanged += new System.EventHandler(this.cmbLabelingMethod_SelectedIndexChanged); // // cmbLabelParts // this.cmbLabelParts.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbLabelParts.FormattingEnabled = true; resources.ApplyResources(this.cmbLabelParts, "cmbLabelParts"); this.cmbLabelParts.Name = "cmbLabelParts"; this.cmbLabelParts.SelectedIndexChanged += new System.EventHandler(this.cmbLabelParts_SelectedIndexChanged); // // groupBox1 // this.groupBox1.Controls.Add(this.clrHalo); resources.ApplyResources(this.groupBox1, "groupBox1"); this.groupBox1.Name = "groupBox1"; this.groupBox1.TabStop = false; // // clrHalo // resources.ApplyResources(this.clrHalo, "clrHalo"); this.clrHalo.LabelText = "Halo Color:"; this.clrHalo.Name = "clrHalo"; this.clrHalo.Value = System.Drawing.Color.Empty; this.clrHalo.SelectedItemChanged += new System.EventHandler(this.clrHalo_SelectedItemChanged); // // gpbUseLabelShadow // this.gpbUseLabelShadow.Controls.Add(this.nudShadowOffsetY); this.gpbUseLabelShadow.Controls.Add(this.label9); this.gpbUseLabelShadow.Controls.Add(this.label8); this.gpbUseLabelShadow.Controls.Add(this.label7); this.gpbUseLabelShadow.Controls.Add(this.nudShadowOffsetX); this.gpbUseLabelShadow.Controls.Add(this.sliderOpacityShadow); this.gpbUseLabelShadow.Controls.Add(this.label6); this.gpbUseLabelShadow.Controls.Add(this.colorButtonShadow); resources.ApplyResources(this.gpbUseLabelShadow, "gpbUseLabelShadow"); this.gpbUseLabelShadow.Name = "gpbUseLabelShadow"; this.gpbUseLabelShadow.TabStop = false; // // nudShadowOffsetY // this.nudShadowOffsetY.DecimalPlaces = 2; this.nudShadowOffsetY.Increment = new decimal(new int[] { 25, 0, 0, 131072}); resources.ApplyResources(this.nudShadowOffsetY, "nudShadowOffsetY"); this.nudShadowOffsetY.Maximum = new decimal(new int[] { 256, 0, 0, 0}); this.nudShadowOffsetY.Minimum = new decimal(new int[] { 256, 0, 0, -2147483648}); this.nudShadowOffsetY.Name = "nudShadowOffsetY"; this.nudShadowOffsetY.ValueChanged += new System.EventHandler(this.UpDownShadowOffsetY_ValueChanged); // // label9 // resources.ApplyResources(this.label9, "label9"); this.label9.Name = "label9"; // // label8 // resources.ApplyResources(this.label8, "label8"); this.label8.Name = "label8"; // // label7 // resources.ApplyResources(this.label7, "label7"); this.label7.Name = "label7"; // // nudShadowOffsetX // this.nudShadowOffsetX.DecimalPlaces = 2; this.nudShadowOffsetX.Increment = new decimal(new int[] { 25, 0, 0, 131072}); resources.ApplyResources(this.nudShadowOffsetX, "nudShadowOffsetX"); this.nudShadowOffsetX.Maximum = new decimal(new int[] { 256, 0, 0, 0}); this.nudShadowOffsetX.Minimum = new decimal(new int[] { 256, 0, 0, -2147483648}); this.nudShadowOffsetX.Name = "nudShadowOffsetX"; this.nudShadowOffsetX.ValueChanged += new System.EventHandler(this.UpDownShadowOffsetX_ValueChanged); // // sliderOpacityShadow // this.sliderOpacityShadow.ColorButton = null; this.sliderOpacityShadow.FlipRamp = false; this.sliderOpacityShadow.FlipText = false; this.sliderOpacityShadow.InvertRamp = false; resources.ApplyResources(this.sliderOpacityShadow, "sliderOpacityShadow"); this.sliderOpacityShadow.Maximum = 1D; this.sliderOpacityShadow.MaximumColor = System.Drawing.Color.CornflowerBlue; this.sliderOpacityShadow.Minimum = 0D; this.sliderOpacityShadow.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.sliderOpacityShadow.Name = "sliderOpacityShadow"; this.sliderOpacityShadow.NumberFormat = null; this.sliderOpacityShadow.Orientation = System.Windows.Forms.Orientation.Horizontal; this.sliderOpacityShadow.RampRadius = 8F; this.sliderOpacityShadow.RampText = "Opacity"; this.sliderOpacityShadow.RampTextAlignment = System.Drawing.ContentAlignment.BottomCenter; this.sliderOpacityShadow.RampTextBehindRamp = true; this.sliderOpacityShadow.RampTextColor = System.Drawing.Color.Black; this.sliderOpacityShadow.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.sliderOpacityShadow.ShowMaximum = true; this.sliderOpacityShadow.ShowMinimum = true; this.sliderOpacityShadow.ShowTicks = true; this.sliderOpacityShadow.ShowValue = false; this.sliderOpacityShadow.SliderColor = System.Drawing.Color.Tan; this.sliderOpacityShadow.SliderRadius = 4F; this.sliderOpacityShadow.TickColor = System.Drawing.Color.DarkGray; this.sliderOpacityShadow.TickSpacing = 5F; this.sliderOpacityShadow.Value = 0D; this.sliderOpacityShadow.ValueChanged += new System.EventHandler(this.sliderOpacityShadow_ValueChanged); // // label6 // resources.ApplyResources(this.label6, "label6"); this.label6.Name = "label6"; // // colorButtonShadow // this.colorButtonShadow.BevelRadius = 4; this.colorButtonShadow.Color = System.Drawing.Color.Blue; this.colorButtonShadow.LaunchDialogOnClick = true; resources.ApplyResources(this.colorButtonShadow, "colorButtonShadow"); this.colorButtonShadow.Name = "colorButtonShadow"; this.colorButtonShadow.RoundingRadius = 10; this.colorButtonShadow.ColorChanged += new System.EventHandler(this.colorButtonShadow_ColorChanged); // // tabMembers // this.tabMembers.Controls.Add(this.sqlMembers); resources.ApplyResources(this.tabMembers, "tabMembers"); this.tabMembers.Name = "tabMembers"; this.tabMembers.UseVisualStyleBackColor = true; // // sqlMembers // this.sqlMembers.AttributeSource = null; resources.ApplyResources(this.sqlMembers, "sqlMembers"); this.sqlMembers.ExpressionText = ""; this.sqlMembers.Name = "sqlMembers"; this.sqlMembers.Table = null; this.sqlMembers.ExpressionTextChanged += new System.EventHandler(this.sqlMembers_ExpressionTextChanged); // // cmdOK // resources.ApplyResources(this.cmdOK, "cmdOK"); this.cmdOK.DialogResult = System.Windows.Forms.DialogResult.OK; this.cmdOK.Name = "cmdOK"; this.cmdOK.UseVisualStyleBackColor = true; this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click); // // cmdCancel // resources.ApplyResources(this.cmdCancel, "cmdCancel"); this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cmdCancel.Name = "cmdCancel"; this.cmdCancel.UseVisualStyleBackColor = true; this.cmdCancel.Click += new System.EventHandler(this.cmdCancel_Click); // // cmdApply // resources.ApplyResources(this.cmdApply, "cmdApply"); this.cmdApply.Name = "cmdApply"; this.cmdApply.UseVisualStyleBackColor = true; this.cmdApply.Click += new System.EventHandler(this.cmdApply_Click); // // lblHelp // resources.ApplyResources(this.lblHelp, "lblHelp"); this.lblHelp.Name = "lblHelp"; // // panel1 // this.panel1.Controls.Add(this.cmdCancel); this.panel1.Controls.Add(this.cmdOK); this.panel1.Controls.Add(this.cmdApply); this.panel1.Controls.Add(this.lblHelp); resources.ApplyResources(this.panel1, "panel1"); this.panel1.Name = "panel1"; // // LabelSetup // this.AcceptButton = this.cmdOK; this.CancelButton = this.cmdCancel; resources.ApplyResources(this, "$this"); this.Controls.Add(this.splitContainer1); this.Controls.Add(this.panel1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.HelpButton = true; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "LabelSetup"; this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); this.panel3.ResumeLayout(false); this.panel2.ResumeLayout(false); this.panel2.PerformLayout(); this.tabs.ResumeLayout(false); this.tabExpression.ResumeLayout(false); this.tabBasic.ResumeLayout(false); this.tabBasic.PerformLayout(); this.grbLabelRotation.ResumeLayout(false); this.grbLabelRotation.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudAngle)).EndInit(); this.gpbBorderColor.ResumeLayout(false); this.gpbBorderColor.PerformLayout(); this.gpbFont.ResumeLayout(false); this.gpbFont.PerformLayout(); this.gpbBackgroundColor.ResumeLayout(false); this.gpbBackgroundColor.PerformLayout(); this.tabAdvanced.ResumeLayout(false); this.tabAdvanced.PerformLayout(); this.grpOffset.ResumeLayout(false); this.grpOffset.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudYOffset)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudXOffset)).EndInit(); this.groupBox1.ResumeLayout(false); this.gpbUseLabelShadow.ResumeLayout(false); this.gpbUseLabelShadow.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudShadowOffsetY)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.nudShadowOffsetX)).EndInit(); this.tabMembers.ResumeLayout(false); this.panel1.ResumeLayout(false); this.ResumeLayout(false); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DetailedPolygonSymbolControl)); this.btnAddToCustom = new System.Windows.Forms.Button(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.cmbUnits = new System.Windows.Forms.ComboBox(); this.lblUnits = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.lblPreview = new System.Windows.Forms.Label(); this.lblScaleMode = new System.Windows.Forms.Label(); this.cmbScaleMode = new System.Windows.Forms.ComboBox(); this.chkSmoothing = new System.Windows.Forms.CheckBox(); this.lblPatternType = new System.Windows.Forms.Label(); this.cmbPatternType = new System.Windows.Forms.ComboBox(); this.tabPatternProperties = new System.Windows.Forms.TabControl(); this.tabSimple = new System.Windows.Forms.TabPage(); this.lblColorSimple = new System.Windows.Forms.Label(); this.cbColorSimple = new DotSpatial.Symbology.Forms.ColorButton(); this.sldOpacitySimple = new DotSpatial.Symbology.Forms.RampSlider(); this.tabPicture = new System.Windows.Forms.TabPage(); this.dbxScaleY = new DotSpatial.Symbology.Forms.DoubleBox(); this.dbxScaleX = new DotSpatial.Symbology.Forms.DoubleBox(); this.angTileAngle = new DotSpatial.Symbology.Forms.AngleControl(); this.lblTileMode = new System.Windows.Forms.Label(); this.cmbTileMode = new System.Windows.Forms.ComboBox(); this.btnLoadImage = new System.Windows.Forms.Button(); this.txtImage = new System.Windows.Forms.TextBox(); this.label4 = new System.Windows.Forms.Label(); this.tabGradient = new System.Windows.Forms.TabPage(); this.sliderGradient = new DotSpatial.Symbology.Forms.GradientControl(); this.cmbGradientType = new System.Windows.Forms.ComboBox(); this.lblEndColor = new System.Windows.Forms.Label(); this.lblStartColor = new System.Windows.Forms.Label(); this.angGradientAngle = new DotSpatial.Symbology.Forms.AngleControl(); this.tabHatch = new System.Windows.Forms.TabPage(); this.lblHatchStyle = new System.Windows.Forms.Label(); this.cmbHatchStyle = new System.Windows.Forms.ComboBox(); this.label2 = new System.Windows.Forms.Label(); this.hatchBackOpacity = new DotSpatial.Symbology.Forms.RampSlider(); this.hatchBackColor = new DotSpatial.Symbology.Forms.ColorButton(); this.label1 = new System.Windows.Forms.Label(); this.hatchForeOpacity = new DotSpatial.Symbology.Forms.RampSlider(); this.hatchForeColor = new DotSpatial.Symbology.Forms.ColorButton(); this.helpProvider1 = new System.Windows.Forms.HelpProvider(); this.ocOutline = new DotSpatial.Symbology.Forms.OutlineControl(); this.ccPatterns = new DotSpatial.Symbology.Forms.PatternCollectionControl(); this.groupBox1.SuspendLayout(); this.tabPatternProperties.SuspendLayout(); this.tabSimple.SuspendLayout(); this.tabPicture.SuspendLayout(); this.tabGradient.SuspendLayout(); this.tabHatch.SuspendLayout(); this.SuspendLayout(); // // btnAddToCustom // resources.ApplyResources(this.btnAddToCustom, "btnAddToCustom"); this.btnAddToCustom.Name = "btnAddToCustom"; this.helpProvider1.SetShowHelp(this.btnAddToCustom, ((bool)(resources.GetObject("btnAddToCustom.ShowHelp")))); this.btnAddToCustom.UseVisualStyleBackColor = true; this.btnAddToCustom.Click += new System.EventHandler(this.btnAddToCustom_Click); // // groupBox1 // resources.ApplyResources(this.groupBox1, "groupBox1"); this.groupBox1.Controls.Add(this.cmbUnits); this.groupBox1.Controls.Add(this.lblUnits); this.groupBox1.Controls.Add(this.label3); this.groupBox1.Controls.Add(this.lblPreview); this.groupBox1.Controls.Add(this.lblScaleMode); this.groupBox1.Controls.Add(this.cmbScaleMode); this.groupBox1.Controls.Add(this.chkSmoothing); this.groupBox1.Name = "groupBox1"; this.helpProvider1.SetShowHelp(this.groupBox1, ((bool)(resources.GetObject("groupBox1.ShowHelp")))); this.groupBox1.TabStop = false; this.groupBox1.UseCompatibleTextRendering = true; // // cmbUnits // this.cmbUnits.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbUnits.FormattingEnabled = true; this.cmbUnits.Items.AddRange(new object[] { resources.GetString("cmbUnits.Items"), resources.GetString("cmbUnits.Items1"), resources.GetString("cmbUnits.Items2"), resources.GetString("cmbUnits.Items3"), resources.GetString("cmbUnits.Items4"), resources.GetString("cmbUnits.Items5"), resources.GetString("cmbUnits.Items6")}); resources.ApplyResources(this.cmbUnits, "cmbUnits"); this.cmbUnits.Name = "cmbUnits"; this.helpProvider1.SetShowHelp(this.cmbUnits, ((bool)(resources.GetObject("cmbUnits.ShowHelp")))); this.cmbUnits.SelectedIndexChanged += new System.EventHandler(this.cmbUnits_SelectedIndexChanged); // // lblUnits // resources.ApplyResources(this.lblUnits, "lblUnits"); this.lblUnits.Name = "lblUnits"; this.helpProvider1.SetShowHelp(this.lblUnits, ((bool)(resources.GetObject("lblUnits.ShowHelp")))); // // label3 // resources.ApplyResources(this.label3, "label3"); this.label3.Name = "label3"; this.helpProvider1.SetShowHelp(this.label3, ((bool)(resources.GetObject("label3.ShowHelp")))); // // lblPreview // this.lblPreview.BackColor = System.Drawing.Color.White; this.lblPreview.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; resources.ApplyResources(this.lblPreview, "lblPreview"); this.lblPreview.Name = "lblPreview"; this.helpProvider1.SetShowHelp(this.lblPreview, ((bool)(resources.GetObject("lblPreview.ShowHelp")))); // // lblScaleMode // resources.ApplyResources(this.lblScaleMode, "lblScaleMode"); this.lblScaleMode.Name = "lblScaleMode"; this.helpProvider1.SetShowHelp(this.lblScaleMode, ((bool)(resources.GetObject("lblScaleMode.ShowHelp")))); // // cmbScaleMode // this.cmbScaleMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbScaleMode.FormattingEnabled = true; this.cmbScaleMode.Items.AddRange(new object[] { resources.GetString("cmbScaleMode.Items"), resources.GetString("cmbScaleMode.Items1"), resources.GetString("cmbScaleMode.Items2")}); resources.ApplyResources(this.cmbScaleMode, "cmbScaleMode"); this.cmbScaleMode.Name = "cmbScaleMode"; this.helpProvider1.SetShowHelp(this.cmbScaleMode, ((bool)(resources.GetObject("cmbScaleMode.ShowHelp")))); this.cmbScaleMode.SelectedIndexChanged += new System.EventHandler(this.cmbScaleMode_SelectedIndexChanged); // // chkSmoothing // resources.ApplyResources(this.chkSmoothing, "chkSmoothing"); this.chkSmoothing.Name = "chkSmoothing"; this.helpProvider1.SetShowHelp(this.chkSmoothing, ((bool)(resources.GetObject("chkSmoothing.ShowHelp")))); this.chkSmoothing.UseVisualStyleBackColor = true; this.chkSmoothing.CheckedChanged += new System.EventHandler(this.chkSmoothing_CheckedChanged); // // lblPatternType // resources.ApplyResources(this.lblPatternType, "lblPatternType"); this.lblPatternType.Name = "lblPatternType"; this.helpProvider1.SetShowHelp(this.lblPatternType, ((bool)(resources.GetObject("lblPatternType.ShowHelp")))); // // cmbPatternType // this.cmbPatternType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbPatternType.FormattingEnabled = true; this.cmbPatternType.Items.AddRange(new object[] { resources.GetString("cmbPatternType.Items"), resources.GetString("cmbPatternType.Items1"), resources.GetString("cmbPatternType.Items2"), resources.GetString("cmbPatternType.Items3")}); resources.ApplyResources(this.cmbPatternType, "cmbPatternType"); this.cmbPatternType.Name = "cmbPatternType"; this.helpProvider1.SetShowHelp(this.cmbPatternType, ((bool)(resources.GetObject("cmbPatternType.ShowHelp")))); this.cmbPatternType.SelectedIndexChanged += new System.EventHandler(this.cmbPatternType_SelectedIndexChanged); // // tabPatternProperties // resources.ApplyResources(this.tabPatternProperties, "tabPatternProperties"); this.tabPatternProperties.Controls.Add(this.tabSimple); this.tabPatternProperties.Controls.Add(this.tabPicture); this.tabPatternProperties.Controls.Add(this.tabGradient); this.tabPatternProperties.Controls.Add(this.tabHatch); this.tabPatternProperties.Name = "tabPatternProperties"; this.tabPatternProperties.SelectedIndex = 0; this.helpProvider1.SetShowHelp(this.tabPatternProperties, ((bool)(resources.GetObject("tabPatternProperties.ShowHelp")))); // // tabSimple // this.tabSimple.Controls.Add(this.lblColorSimple); this.tabSimple.Controls.Add(this.cbColorSimple); this.tabSimple.Controls.Add(this.sldOpacitySimple); resources.ApplyResources(this.tabSimple, "tabSimple"); this.tabSimple.Name = "tabSimple"; this.helpProvider1.SetShowHelp(this.tabSimple, ((bool)(resources.GetObject("tabSimple.ShowHelp")))); this.tabSimple.UseVisualStyleBackColor = true; // // lblColorSimple // resources.ApplyResources(this.lblColorSimple, "lblColorSimple"); this.lblColorSimple.Name = "lblColorSimple"; this.helpProvider1.SetShowHelp(this.lblColorSimple, ((bool)(resources.GetObject("lblColorSimple.ShowHelp")))); // // cbColorSimple // this.cbColorSimple.BevelRadius = 4; this.cbColorSimple.Color = System.Drawing.Color.Blue; this.cbColorSimple.LaunchDialogOnClick = true; resources.ApplyResources(this.cbColorSimple, "cbColorSimple"); this.cbColorSimple.Name = "cbColorSimple"; this.cbColorSimple.RoundingRadius = 10; this.helpProvider1.SetShowHelp(this.cbColorSimple, ((bool)(resources.GetObject("cbColorSimple.ShowHelp")))); this.cbColorSimple.ColorChanged += new System.EventHandler(this.cbColorSimple_ColorChanged); // // sldOpacitySimple // this.sldOpacitySimple.ColorButton = null; this.sldOpacitySimple.FlipRamp = false; this.sldOpacitySimple.FlipText = false; this.sldOpacitySimple.InvertRamp = false; resources.ApplyResources(this.sldOpacitySimple, "sldOpacitySimple"); this.sldOpacitySimple.Maximum = 1D; this.sldOpacitySimple.MaximumColor = System.Drawing.Color.CornflowerBlue; this.sldOpacitySimple.Minimum = 0D; this.sldOpacitySimple.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.sldOpacitySimple.Name = "sldOpacitySimple"; this.sldOpacitySimple.NumberFormat = null; this.sldOpacitySimple.Orientation = System.Windows.Forms.Orientation.Horizontal; this.sldOpacitySimple.RampRadius = 8F; this.sldOpacitySimple.RampText = "Opacity"; this.sldOpacitySimple.RampTextAlignment = System.Drawing.ContentAlignment.BottomCenter; this.sldOpacitySimple.RampTextBehindRamp = true; this.sldOpacitySimple.RampTextColor = System.Drawing.Color.Black; this.sldOpacitySimple.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.helpProvider1.SetShowHelp(this.sldOpacitySimple, ((bool)(resources.GetObject("sldOpacitySimple.ShowHelp")))); this.sldOpacitySimple.ShowMaximum = true; this.sldOpacitySimple.ShowMinimum = true; this.sldOpacitySimple.ShowTicks = true; this.sldOpacitySimple.ShowValue = false; this.sldOpacitySimple.SliderColor = System.Drawing.Color.SteelBlue; this.sldOpacitySimple.SliderRadius = 4F; this.sldOpacitySimple.TickColor = System.Drawing.Color.DarkGray; this.sldOpacitySimple.TickSpacing = 5F; this.sldOpacitySimple.Value = 0D; this.sldOpacitySimple.ValueChanged += new System.EventHandler(this.sldOpacitySimple_ValueChanged); // // tabPicture // this.tabPicture.Controls.Add(this.dbxScaleY); this.tabPicture.Controls.Add(this.dbxScaleX); this.tabPicture.Controls.Add(this.angTileAngle); this.tabPicture.Controls.Add(this.lblTileMode); this.tabPicture.Controls.Add(this.cmbTileMode); this.tabPicture.Controls.Add(this.btnLoadImage); this.tabPicture.Controls.Add(this.txtImage); this.tabPicture.Controls.Add(this.label4); resources.ApplyResources(this.tabPicture, "tabPicture"); this.tabPicture.Name = "tabPicture"; this.helpProvider1.SetShowHelp(this.tabPicture, ((bool)(resources.GetObject("tabPicture.ShowHelp")))); this.tabPicture.UseVisualStyleBackColor = true; // // dbxScaleY // this.dbxScaleY.BackColorInvalid = System.Drawing.Color.Salmon; this.dbxScaleY.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.dbxScaleY, "dbxScaleY"); this.dbxScaleY.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.dbxScaleY.IsValid = true; this.dbxScaleY.Name = "dbxScaleY"; this.dbxScaleY.NumberFormat = null; this.dbxScaleY.RegularHelp = "Enter a double precision floating point value."; this.helpProvider1.SetShowHelp(this.dbxScaleY, ((bool)(resources.GetObject("dbxScaleY.ShowHelp")))); this.dbxScaleY.Value = 0D; this.dbxScaleY.TextChanged += new System.EventHandler(this.dbxScaleY_TextChanged); // // dbxScaleX // this.dbxScaleX.BackColorInvalid = System.Drawing.Color.Salmon; this.dbxScaleX.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.dbxScaleX, "dbxScaleX"); this.dbxScaleX.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.dbxScaleX.IsValid = true; this.dbxScaleX.Name = "dbxScaleX"; this.dbxScaleX.NumberFormat = null; this.dbxScaleX.RegularHelp = "Enter a double precision floating point value."; this.helpProvider1.SetShowHelp(this.dbxScaleX, ((bool)(resources.GetObject("dbxScaleX.ShowHelp")))); this.dbxScaleX.Value = 0D; this.dbxScaleX.TextChanged += new System.EventHandler(this.dbxScaleX_TextChanged); // // angTileAngle // this.angTileAngle.Angle = 0; this.angTileAngle.BackColor = System.Drawing.SystemColors.Control; resources.ApplyResources(this.angTileAngle, "angTileAngle"); this.angTileAngle.Clockwise = false; this.angTileAngle.KnobColor = System.Drawing.Color.SteelBlue; this.angTileAngle.Name = "angTileAngle"; this.helpProvider1.SetShowHelp(this.angTileAngle, ((bool)(resources.GetObject("angTileAngle.ShowHelp")))); this.angTileAngle.StartAngle = 0; this.angTileAngle.AngleChanged += new System.EventHandler(this.angTileAngle_AngleChanged); // // lblTileMode // resources.ApplyResources(this.lblTileMode, "lblTileMode"); this.lblTileMode.Name = "lblTileMode"; this.helpProvider1.SetShowHelp(this.lblTileMode, ((bool)(resources.GetObject("lblTileMode.ShowHelp")))); // // cmbTileMode // this.cmbTileMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbTileMode.FormattingEnabled = true; this.cmbTileMode.Items.AddRange(new object[] { resources.GetString("cmbTileMode.Items"), resources.GetString("cmbTileMode.Items1"), resources.GetString("cmbTileMode.Items2"), resources.GetString("cmbTileMode.Items3"), resources.GetString("cmbTileMode.Items4")}); resources.ApplyResources(this.cmbTileMode, "cmbTileMode"); this.cmbTileMode.Name = "cmbTileMode"; this.helpProvider1.SetShowHelp(this.cmbTileMode, ((bool)(resources.GetObject("cmbTileMode.ShowHelp")))); this.cmbTileMode.SelectedIndexChanged += new System.EventHandler(this.cmbTileMode_SelectedIndexChanged); // // btnLoadImage // resources.ApplyResources(this.btnLoadImage, "btnLoadImage"); this.btnLoadImage.Name = "btnLoadImage"; this.helpProvider1.SetShowHelp(this.btnLoadImage, ((bool)(resources.GetObject("btnLoadImage.ShowHelp")))); this.btnLoadImage.UseVisualStyleBackColor = true; this.btnLoadImage.Click += new System.EventHandler(this.btnLoadImage_Click); // // txtImage // resources.ApplyResources(this.txtImage, "txtImage"); this.txtImage.Name = "txtImage"; this.helpProvider1.SetShowHelp(this.txtImage, ((bool)(resources.GetObject("txtImage.ShowHelp")))); // // label4 // resources.ApplyResources(this.label4, "label4"); this.label4.Name = "label4"; this.helpProvider1.SetShowHelp(this.label4, ((bool)(resources.GetObject("label4.ShowHelp")))); // // tabGradient // this.tabGradient.Controls.Add(this.sliderGradient); this.tabGradient.Controls.Add(this.cmbGradientType); this.tabGradient.Controls.Add(this.lblEndColor); this.tabGradient.Controls.Add(this.lblStartColor); this.tabGradient.Controls.Add(this.angGradientAngle); resources.ApplyResources(this.tabGradient, "tabGradient"); this.tabGradient.Name = "tabGradient"; this.helpProvider1.SetShowHelp(this.tabGradient, ((bool)(resources.GetObject("tabGradient.ShowHelp")))); this.tabGradient.UseVisualStyleBackColor = true; // // sliderGradient // this.sliderGradient.EndValue = 0.8F; resources.ApplyResources(this.sliderGradient, "sliderGradient"); this.sliderGradient.MaximumColor = System.Drawing.Color.Blue; this.sliderGradient.MinimumColor = System.Drawing.Color.Lime; this.sliderGradient.Name = "sliderGradient"; this.helpProvider1.SetShowHelp(this.sliderGradient, ((bool)(resources.GetObject("sliderGradient.ShowHelp")))); this.sliderGradient.SlidersEnabled = true; this.sliderGradient.StartValue = 0.2F; this.sliderGradient.GradientChanging += new System.EventHandler(this.sliderGradient_GradientChanging); // // cmbGradientType // this.cmbGradientType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbGradientType.FormattingEnabled = true; this.cmbGradientType.Items.AddRange(new object[] { resources.GetString("cmbGradientType.Items"), resources.GetString("cmbGradientType.Items1"), resources.GetString("cmbGradientType.Items2")}); resources.ApplyResources(this.cmbGradientType, "cmbGradientType"); this.cmbGradientType.Name = "cmbGradientType"; this.helpProvider1.SetShowHelp(this.cmbGradientType, ((bool)(resources.GetObject("cmbGradientType.ShowHelp")))); this.cmbGradientType.SelectedIndexChanged += new System.EventHandler(this.cmbGradientType_SelectedIndexChanged); // // lblEndColor // resources.ApplyResources(this.lblEndColor, "lblEndColor"); this.lblEndColor.Name = "lblEndColor"; this.helpProvider1.SetShowHelp(this.lblEndColor, ((bool)(resources.GetObject("lblEndColor.ShowHelp")))); // // lblStartColor // resources.ApplyResources(this.lblStartColor, "lblStartColor"); this.lblStartColor.Name = "lblStartColor"; this.helpProvider1.SetShowHelp(this.lblStartColor, ((bool)(resources.GetObject("lblStartColor.ShowHelp")))); // // angGradientAngle // this.angGradientAngle.Angle = 0; this.angGradientAngle.BackColor = System.Drawing.SystemColors.Control; resources.ApplyResources(this.angGradientAngle, "angGradientAngle"); this.angGradientAngle.Clockwise = false; this.angGradientAngle.KnobColor = System.Drawing.Color.SteelBlue; this.angGradientAngle.Name = "angGradientAngle"; this.helpProvider1.SetShowHelp(this.angGradientAngle, ((bool)(resources.GetObject("angGradientAngle.ShowHelp")))); this.angGradientAngle.StartAngle = 0; this.angGradientAngle.AngleChanged += new System.EventHandler(this.angGradientAngle_AngleChanged); // // tabHatch // this.tabHatch.Controls.Add(this.lblHatchStyle); this.tabHatch.Controls.Add(this.cmbHatchStyle); this.tabHatch.Controls.Add(this.label2); this.tabHatch.Controls.Add(this.hatchBackOpacity); this.tabHatch.Controls.Add(this.hatchBackColor); this.tabHatch.Controls.Add(this.label1); this.tabHatch.Controls.Add(this.hatchForeOpacity); this.tabHatch.Controls.Add(this.hatchForeColor); resources.ApplyResources(this.tabHatch, "tabHatch"); this.tabHatch.Name = "tabHatch"; this.helpProvider1.SetShowHelp(this.tabHatch, ((bool)(resources.GetObject("tabHatch.ShowHelp")))); this.tabHatch.UseVisualStyleBackColor = true; // // lblHatchStyle // resources.ApplyResources(this.lblHatchStyle, "lblHatchStyle"); this.lblHatchStyle.Name = "lblHatchStyle"; this.helpProvider1.SetShowHelp(this.lblHatchStyle, ((bool)(resources.GetObject("lblHatchStyle.ShowHelp")))); // // cmbHatchStyle // this.cmbHatchStyle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbHatchStyle.FormattingEnabled = true; resources.ApplyResources(this.cmbHatchStyle, "cmbHatchStyle"); this.cmbHatchStyle.Name = "cmbHatchStyle"; this.helpProvider1.SetShowHelp(this.cmbHatchStyle, ((bool)(resources.GetObject("cmbHatchStyle.ShowHelp")))); this.cmbHatchStyle.SelectedIndexChanged += new System.EventHandler(this.cmbHatchStyle_SelectedIndexChanged); // // label2 // resources.ApplyResources(this.label2, "label2"); this.label2.Name = "label2"; this.helpProvider1.SetShowHelp(this.label2, ((bool)(resources.GetObject("label2.ShowHelp")))); // // hatchBackOpacity // this.hatchBackOpacity.ColorButton = null; this.hatchBackOpacity.FlipRamp = false; this.hatchBackOpacity.FlipText = false; this.hatchBackOpacity.InvertRamp = false; resources.ApplyResources(this.hatchBackOpacity, "hatchBackOpacity"); this.hatchBackOpacity.Maximum = 1D; this.hatchBackOpacity.MaximumColor = System.Drawing.Color.CornflowerBlue; this.hatchBackOpacity.Minimum = 0D; this.hatchBackOpacity.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.hatchBackOpacity.Name = "hatchBackOpacity"; this.hatchBackOpacity.NumberFormat = null; this.hatchBackOpacity.Orientation = System.Windows.Forms.Orientation.Horizontal; this.hatchBackOpacity.RampRadius = 8F; this.hatchBackOpacity.RampText = "Opacity"; this.hatchBackOpacity.RampTextAlignment = System.Drawing.ContentAlignment.BottomCenter; this.hatchBackOpacity.RampTextBehindRamp = true; this.hatchBackOpacity.RampTextColor = System.Drawing.Color.Black; this.hatchBackOpacity.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.helpProvider1.SetShowHelp(this.hatchBackOpacity, ((bool)(resources.GetObject("hatchBackOpacity.ShowHelp")))); this.hatchBackOpacity.ShowMaximum = true; this.hatchBackOpacity.ShowMinimum = true; this.hatchBackOpacity.ShowTicks = true; this.hatchBackOpacity.ShowValue = false; this.hatchBackOpacity.SliderColor = System.Drawing.Color.Tan; this.hatchBackOpacity.SliderRadius = 4F; this.hatchBackOpacity.TickColor = System.Drawing.Color.DarkGray; this.hatchBackOpacity.TickSpacing = 5F; this.hatchBackOpacity.Value = 0D; this.hatchBackOpacity.ValueChanged += new System.EventHandler(this.hatchBackOpacity_ValueChanged); // // hatchBackColor // this.hatchBackColor.BevelRadius = 4; this.hatchBackColor.Color = System.Drawing.Color.Blue; this.hatchBackColor.LaunchDialogOnClick = true; resources.ApplyResources(this.hatchBackColor, "hatchBackColor"); this.hatchBackColor.Name = "hatchBackColor"; this.hatchBackColor.RoundingRadius = 10; this.helpProvider1.SetShowHelp(this.hatchBackColor, ((bool)(resources.GetObject("hatchBackColor.ShowHelp")))); this.hatchBackColor.ColorChanged += new System.EventHandler(this.hatchBackColor_ColorChanged); // // label1 // resources.ApplyResources(this.label1, "label1"); this.label1.Name = "label1"; this.helpProvider1.SetShowHelp(this.label1, ((bool)(resources.GetObject("label1.ShowHelp")))); // // hatchForeOpacity // this.hatchForeOpacity.ColorButton = null; this.hatchForeOpacity.FlipRamp = false; this.hatchForeOpacity.FlipText = false; this.hatchForeOpacity.InvertRamp = false; resources.ApplyResources(this.hatchForeOpacity, "hatchForeOpacity"); this.hatchForeOpacity.Maximum = 1D; this.hatchForeOpacity.MaximumColor = System.Drawing.Color.CornflowerBlue; this.hatchForeOpacity.Minimum = 0D; this.hatchForeOpacity.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.hatchForeOpacity.Name = "hatchForeOpacity"; this.hatchForeOpacity.NumberFormat = null; this.hatchForeOpacity.Orientation = System.Windows.Forms.Orientation.Horizontal; this.hatchForeOpacity.RampRadius = 8F; this.hatchForeOpacity.RampText = "Opacity"; this.hatchForeOpacity.RampTextAlignment = System.Drawing.ContentAlignment.BottomCenter; this.hatchForeOpacity.RampTextBehindRamp = true; this.hatchForeOpacity.RampTextColor = System.Drawing.Color.Black; this.hatchForeOpacity.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.helpProvider1.SetShowHelp(this.hatchForeOpacity, ((bool)(resources.GetObject("hatchForeOpacity.ShowHelp")))); this.hatchForeOpacity.ShowMaximum = true; this.hatchForeOpacity.ShowMinimum = true; this.hatchForeOpacity.ShowTicks = true; this.hatchForeOpacity.ShowValue = false; this.hatchForeOpacity.SliderColor = System.Drawing.Color.Tan; this.hatchForeOpacity.SliderRadius = 4F; this.hatchForeOpacity.TickColor = System.Drawing.Color.DarkGray; this.hatchForeOpacity.TickSpacing = 5F; this.hatchForeOpacity.Value = 0D; this.hatchForeOpacity.ValueChanged += new System.EventHandler(this.hatchForeOpacity_ValueChanged); // // hatchForeColor // this.hatchForeColor.BevelRadius = 4; this.hatchForeColor.Color = System.Drawing.Color.Blue; this.hatchForeColor.LaunchDialogOnClick = true; resources.ApplyResources(this.hatchForeColor, "hatchForeColor"); this.hatchForeColor.Name = "hatchForeColor"; this.hatchForeColor.RoundingRadius = 10; this.helpProvider1.SetShowHelp(this.hatchForeColor, ((bool)(resources.GetObject("hatchForeColor.ShowHelp")))); this.hatchForeColor.ColorChanged += new System.EventHandler(this.hatchForeColor_ColorChanged); // // ocOutline // resources.ApplyResources(this.ocOutline, "ocOutline"); this.ocOutline.Name = "ocOutline"; this.ocOutline.Pattern = null; this.helpProvider1.SetShowHelp(this.ocOutline, ((bool)(resources.GetObject("ocOutline.ShowHelp")))); this.ocOutline.OutlineChanged += new System.EventHandler(this.ocOutline_OutlineChanged); // // ccPatterns // resources.ApplyResources(this.ccPatterns, "ccPatterns"); this.ccPatterns.Name = "ccPatterns"; this.helpProvider1.SetShowHelp(this.ccPatterns, ((bool)(resources.GetObject("ccPatterns.ShowHelp")))); this.ccPatterns.Load += new System.EventHandler(this.ccPatterns_Load); // // DetailedPolygonSymbolControl // this.Controls.Add(this.groupBox1); this.Controls.Add(this.btnAddToCustom); this.Controls.Add(this.ocOutline); this.Controls.Add(this.tabPatternProperties); this.Controls.Add(this.lblPatternType); this.Controls.Add(this.cmbPatternType); this.Controls.Add(this.ccPatterns); this.Name = "DetailedPolygonSymbolControl"; this.helpProvider1.SetShowHelp(this, ((bool)(resources.GetObject("$this.ShowHelp")))); resources.ApplyResources(this, "$this"); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.tabPatternProperties.ResumeLayout(false); this.tabSimple.ResumeLayout(false); this.tabSimple.PerformLayout(); this.tabPicture.ResumeLayout(false); this.tabPicture.PerformLayout(); this.tabGradient.ResumeLayout(false); this.tabGradient.PerformLayout(); this.tabHatch.ResumeLayout(false); this.tabHatch.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DetailedLineSymbolControl)); this.cmbStrokeType = new System.Windows.Forms.ComboBox(); this.chkSmoothing = new System.Windows.Forms.CheckBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.label3 = new System.Windows.Forms.Label(); this.lblPreview = new System.Windows.Forms.Label(); this.lblScaleMode = new System.Windows.Forms.Label(); this.cmbScaleMode = new System.Windows.Forms.ComboBox(); this.label1 = new System.Windows.Forms.Label(); this.tabStrokeProperties = new System.Windows.Forms.TabControl(); this.tabSimple = new System.Windows.Forms.TabPage(); this.label5 = new System.Windows.Forms.Label(); this.label9 = new System.Windows.Forms.Label(); this.cbColorSimple = new DotSpatial.Symbology.Forms.ColorButton(); this.sldOpacitySimple = new DotSpatial.Symbology.Forms.RampSlider(); this.cmbStrokeStyle = new System.Windows.Forms.ComboBox(); this.label2 = new System.Windows.Forms.Label(); this.dblWidth = new DotSpatial.Symbology.Forms.DoubleBox(); this.tabCartographic = new System.Windows.Forms.TabPage(); this.lblColorCartographic = new System.Windows.Forms.Label(); this.lblOpacityCartographic = new System.Windows.Forms.Label(); this.grpCaps = new System.Windows.Forms.GroupBox(); this.lblStartCap = new System.Windows.Forms.Label(); this.cmbEndCap = new System.Windows.Forms.ComboBox(); this.label4 = new System.Windows.Forms.Label(); this.cmbStartCap = new System.Windows.Forms.ComboBox(); this.cbColorCartographic = new DotSpatial.Symbology.Forms.ColorButton(); this.sldOpacityCartographic = new DotSpatial.Symbology.Forms.RampSlider(); this.dblStrokeOffset = new DotSpatial.Symbology.Forms.DoubleBox(); this.radLineJoin = new DotSpatial.Symbology.Forms.LineJoinControl(); this.dblWidthCartographic = new DotSpatial.Symbology.Forms.DoubleBox(); this.tabDash = new System.Windows.Forms.TabPage(); this.dashControl1 = new DotSpatial.Symbology.Forms.DashControl(); this.tabDecoration = new System.Windows.Forms.TabPage(); this.dblOffset = new DotSpatial.Symbology.Forms.DoubleBox(); this.ccDecorations = new DotSpatial.Symbology.Forms.DecorationCollectionControl(); this.btnEdit = new System.Windows.Forms.Button(); this.label6 = new System.Windows.Forms.Label(); this.lblDecorationPreview = new System.Windows.Forms.Label(); this.lblNumberOfPositions = new System.Windows.Forms.Label(); this.nudDecorationCount = new System.Windows.Forms.NumericUpDown(); this.grpRotation = new System.Windows.Forms.GroupBox(); this.radRotationFixed = new System.Windows.Forms.RadioButton(); this.radRotationWithLine = new System.Windows.Forms.RadioButton(); this.grpFlip = new System.Windows.Forms.GroupBox(); this.chkFlipFirst = new System.Windows.Forms.CheckBox(); this.chkFlipAll = new System.Windows.Forms.CheckBox(); this.ttHelp = new System.Windows.Forms.ToolTip(this.components); this.ccStrokes = new DotSpatial.Symbology.Forms.StrokeCollectionControl(); this.groupBox1.SuspendLayout(); this.tabStrokeProperties.SuspendLayout(); this.tabSimple.SuspendLayout(); this.tabCartographic.SuspendLayout(); this.grpCaps.SuspendLayout(); this.tabDash.SuspendLayout(); this.tabDecoration.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudDecorationCount)).BeginInit(); this.grpRotation.SuspendLayout(); this.grpFlip.SuspendLayout(); this.SuspendLayout(); // // cmbStrokeType // this.cmbStrokeType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbStrokeType.FormattingEnabled = true; this.cmbStrokeType.Items.AddRange(new object[] { resources.GetString("cmbStrokeType.Items"), resources.GetString("cmbStrokeType.Items1")}); resources.ApplyResources(this.cmbStrokeType, "cmbStrokeType"); this.cmbStrokeType.Name = "cmbStrokeType"; this.ttHelp.SetToolTip(this.cmbStrokeType, resources.GetString("cmbStrokeType.ToolTip")); this.cmbStrokeType.SelectedIndexChanged += new System.EventHandler(this.cmbStrokeType_SelectedIndexChanged); // // chkSmoothing // resources.ApplyResources(this.chkSmoothing, "chkSmoothing"); this.chkSmoothing.Name = "chkSmoothing"; this.ttHelp.SetToolTip(this.chkSmoothing, resources.GetString("chkSmoothing.ToolTip")); this.chkSmoothing.UseVisualStyleBackColor = true; this.chkSmoothing.CheckedChanged += new System.EventHandler(this.chkSmoothing_CheckedChanged); // // groupBox1 // resources.ApplyResources(this.groupBox1, "groupBox1"); this.groupBox1.Controls.Add(this.label3); this.groupBox1.Controls.Add(this.lblPreview); this.groupBox1.Controls.Add(this.lblScaleMode); this.groupBox1.Controls.Add(this.cmbScaleMode); this.groupBox1.Controls.Add(this.chkSmoothing); this.groupBox1.Name = "groupBox1"; this.groupBox1.TabStop = false; // // label3 // resources.ApplyResources(this.label3, "label3"); this.label3.Name = "label3"; // // lblPreview // resources.ApplyResources(this.lblPreview, "lblPreview"); this.lblPreview.BackColor = System.Drawing.Color.White; this.lblPreview.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblPreview.Name = "lblPreview"; // // lblScaleMode // resources.ApplyResources(this.lblScaleMode, "lblScaleMode"); this.lblScaleMode.Name = "lblScaleMode"; // // cmbScaleMode // this.cmbScaleMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbScaleMode.FormattingEnabled = true; this.cmbScaleMode.Items.AddRange(new object[] { resources.GetString("cmbScaleMode.Items"), resources.GetString("cmbScaleMode.Items1"), resources.GetString("cmbScaleMode.Items2")}); resources.ApplyResources(this.cmbScaleMode, "cmbScaleMode"); this.cmbScaleMode.Name = "cmbScaleMode"; this.ttHelp.SetToolTip(this.cmbScaleMode, resources.GetString("cmbScaleMode.ToolTip")); this.cmbScaleMode.SelectedIndexChanged += new System.EventHandler(this.cmbScaleMode_SelectedIndexChanged); // // label1 // resources.ApplyResources(this.label1, "label1"); this.label1.Name = "label1"; // // tabStrokeProperties // resources.ApplyResources(this.tabStrokeProperties, "tabStrokeProperties"); this.tabStrokeProperties.Controls.Add(this.tabSimple); this.tabStrokeProperties.Controls.Add(this.tabCartographic); this.tabStrokeProperties.Controls.Add(this.tabDash); this.tabStrokeProperties.Controls.Add(this.tabDecoration); this.tabStrokeProperties.Name = "tabStrokeProperties"; this.tabStrokeProperties.SelectedIndex = 0; // // tabSimple // this.tabSimple.AllowDrop = true; this.tabSimple.Controls.Add(this.label5); this.tabSimple.Controls.Add(this.label9); this.tabSimple.Controls.Add(this.cbColorSimple); this.tabSimple.Controls.Add(this.sldOpacitySimple); this.tabSimple.Controls.Add(this.cmbStrokeStyle); this.tabSimple.Controls.Add(this.label2); this.tabSimple.Controls.Add(this.dblWidth); resources.ApplyResources(this.tabSimple, "tabSimple"); this.tabSimple.Name = "tabSimple"; this.tabSimple.UseVisualStyleBackColor = true; // // label5 // resources.ApplyResources(this.label5, "label5"); this.label5.Name = "label5"; // // label9 // resources.ApplyResources(this.label9, "label9"); this.label9.Name = "label9"; // // cbColorSimple // this.cbColorSimple.BevelRadius = 6; this.cbColorSimple.Color = System.Drawing.Color.Blue; this.cbColorSimple.LaunchDialogOnClick = true; resources.ApplyResources(this.cbColorSimple, "cbColorSimple"); this.cbColorSimple.Name = "cbColorSimple"; this.cbColorSimple.RoundingRadius = 15; this.ttHelp.SetToolTip(this.cbColorSimple, resources.GetString("cbColorSimple.ToolTip")); // // sldOpacitySimple // this.sldOpacitySimple.ColorButton = null; this.sldOpacitySimple.FlipRamp = false; this.sldOpacitySimple.FlipText = false; this.sldOpacitySimple.InvertRamp = false; resources.ApplyResources(this.sldOpacitySimple, "sldOpacitySimple"); this.sldOpacitySimple.Maximum = 1D; this.sldOpacitySimple.MaximumColor = System.Drawing.Color.CornflowerBlue; this.sldOpacitySimple.Minimum = 0D; this.sldOpacitySimple.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.sldOpacitySimple.Name = "sldOpacitySimple"; this.sldOpacitySimple.NumberFormat = null; this.sldOpacitySimple.Orientation = System.Windows.Forms.Orientation.Horizontal; this.sldOpacitySimple.RampRadius = 10F; this.sldOpacitySimple.RampText = "Opacity"; this.sldOpacitySimple.RampTextAlignment = System.Drawing.ContentAlignment.BottomCenter; this.sldOpacitySimple.RampTextBehindRamp = true; this.sldOpacitySimple.RampTextColor = System.Drawing.Color.Black; this.sldOpacitySimple.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.sldOpacitySimple.ShowMaximum = true; this.sldOpacitySimple.ShowMinimum = true; this.sldOpacitySimple.ShowTicks = true; this.sldOpacitySimple.ShowValue = false; this.sldOpacitySimple.SliderColor = System.Drawing.Color.Blue; this.sldOpacitySimple.SliderRadius = 4F; this.sldOpacitySimple.TickColor = System.Drawing.Color.DarkGray; this.sldOpacitySimple.TickSpacing = 5F; this.ttHelp.SetToolTip(this.sldOpacitySimple, resources.GetString("sldOpacitySimple.ToolTip")); this.sldOpacitySimple.Value = 0D; // // cmbStrokeStyle // this.cmbStrokeStyle.FormattingEnabled = true; this.cmbStrokeStyle.Items.AddRange(new object[] { resources.GetString("cmbStrokeStyle.Items"), resources.GetString("cmbStrokeStyle.Items1"), resources.GetString("cmbStrokeStyle.Items2"), resources.GetString("cmbStrokeStyle.Items3"), resources.GetString("cmbStrokeStyle.Items4"), resources.GetString("cmbStrokeStyle.Items5")}); resources.ApplyResources(this.cmbStrokeStyle, "cmbStrokeStyle"); this.cmbStrokeStyle.Name = "cmbStrokeStyle"; this.ttHelp.SetToolTip(this.cmbStrokeStyle, resources.GetString("cmbStrokeStyle.ToolTip")); this.cmbStrokeStyle.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged); // // label2 // resources.ApplyResources(this.label2, "label2"); this.label2.Name = "label2"; // // dblWidth // this.dblWidth.BackColorInvalid = System.Drawing.Color.Salmon; this.dblWidth.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.dblWidth, "dblWidth"); this.dblWidth.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.dblWidth.IsValid = true; this.dblWidth.Name = "dblWidth"; this.dblWidth.NumberFormat = null; this.dblWidth.RegularHelp = "Enter a double precision floating point value."; this.ttHelp.SetToolTip(this.dblWidth, resources.GetString("dblWidth.ToolTip")); this.dblWidth.Value = 0D; this.dblWidth.TextChanged += new System.EventHandler(this.dblWidth_TextChanged); // // tabCartographic // this.tabCartographic.Controls.Add(this.lblColorCartographic); this.tabCartographic.Controls.Add(this.lblOpacityCartographic); this.tabCartographic.Controls.Add(this.grpCaps); this.tabCartographic.Controls.Add(this.cbColorCartographic); this.tabCartographic.Controls.Add(this.sldOpacityCartographic); this.tabCartographic.Controls.Add(this.dblStrokeOffset); this.tabCartographic.Controls.Add(this.radLineJoin); this.tabCartographic.Controls.Add(this.dblWidthCartographic); resources.ApplyResources(this.tabCartographic, "tabCartographic"); this.tabCartographic.Name = "tabCartographic"; this.tabCartographic.UseVisualStyleBackColor = true; // // lblColorCartographic // resources.ApplyResources(this.lblColorCartographic, "lblColorCartographic"); this.lblColorCartographic.Name = "lblColorCartographic"; // // lblOpacityCartographic // resources.ApplyResources(this.lblOpacityCartographic, "lblOpacityCartographic"); this.lblOpacityCartographic.Name = "lblOpacityCartographic"; // // grpCaps // this.grpCaps.Controls.Add(this.lblStartCap); this.grpCaps.Controls.Add(this.cmbEndCap); this.grpCaps.Controls.Add(this.label4); this.grpCaps.Controls.Add(this.cmbStartCap); resources.ApplyResources(this.grpCaps, "grpCaps"); this.grpCaps.Name = "grpCaps"; this.grpCaps.TabStop = false; this.ttHelp.SetToolTip(this.grpCaps, resources.GetString("grpCaps.ToolTip")); // // lblStartCap // resources.ApplyResources(this.lblStartCap, "lblStartCap"); this.lblStartCap.Name = "lblStartCap"; // // cmbEndCap // this.cmbEndCap.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbEndCap.FormattingEnabled = true; resources.ApplyResources(this.cmbEndCap, "cmbEndCap"); this.cmbEndCap.Name = "cmbEndCap"; this.ttHelp.SetToolTip(this.cmbEndCap, resources.GetString("cmbEndCap.ToolTip")); this.cmbEndCap.SelectedIndexChanged += new System.EventHandler(this.cmbEndCap_SelectedIndexChanged); // // label4 // resources.ApplyResources(this.label4, "label4"); this.label4.Name = "label4"; // // cmbStartCap // this.cmbStartCap.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbStartCap.FormattingEnabled = true; resources.ApplyResources(this.cmbStartCap, "cmbStartCap"); this.cmbStartCap.Name = "cmbStartCap"; this.ttHelp.SetToolTip(this.cmbStartCap, resources.GetString("cmbStartCap.ToolTip")); this.cmbStartCap.SelectedIndexChanged += new System.EventHandler(this.cmbStartCap_SelectedIndexChanged); // // cbColorCartographic // this.cbColorCartographic.BevelRadius = 6; this.cbColorCartographic.Color = System.Drawing.Color.Blue; this.cbColorCartographic.LaunchDialogOnClick = true; resources.ApplyResources(this.cbColorCartographic, "cbColorCartographic"); this.cbColorCartographic.Name = "cbColorCartographic"; this.cbColorCartographic.RoundingRadius = 15; this.ttHelp.SetToolTip(this.cbColorCartographic, resources.GetString("cbColorCartographic.ToolTip")); // // sldOpacityCartographic // this.sldOpacityCartographic.ColorButton = null; this.sldOpacityCartographic.FlipRamp = false; this.sldOpacityCartographic.FlipText = false; this.sldOpacityCartographic.InvertRamp = false; resources.ApplyResources(this.sldOpacityCartographic, "sldOpacityCartographic"); this.sldOpacityCartographic.Maximum = 1D; this.sldOpacityCartographic.MaximumColor = System.Drawing.Color.CornflowerBlue; this.sldOpacityCartographic.Minimum = 0D; this.sldOpacityCartographic.MinimumColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0))))); this.sldOpacityCartographic.Name = "sldOpacityCartographic"; this.sldOpacityCartographic.NumberFormat = null; this.sldOpacityCartographic.Orientation = System.Windows.Forms.Orientation.Horizontal; this.sldOpacityCartographic.RampRadius = 10F; this.sldOpacityCartographic.RampText = "Opacity"; this.sldOpacityCartographic.RampTextAlignment = System.Drawing.ContentAlignment.BottomRight; this.sldOpacityCartographic.RampTextBehindRamp = true; this.sldOpacityCartographic.RampTextColor = System.Drawing.Color.Black; this.sldOpacityCartographic.RampTextFont = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.sldOpacityCartographic.ShowMaximum = true; this.sldOpacityCartographic.ShowMinimum = true; this.sldOpacityCartographic.ShowTicks = true; this.sldOpacityCartographic.ShowValue = false; this.sldOpacityCartographic.SliderColor = System.Drawing.Color.Blue; this.sldOpacityCartographic.SliderRadius = 4F; this.sldOpacityCartographic.TickColor = System.Drawing.Color.DarkGray; this.sldOpacityCartographic.TickSpacing = 5F; this.ttHelp.SetToolTip(this.sldOpacityCartographic, resources.GetString("sldOpacityCartographic.ToolTip")); this.sldOpacityCartographic.Value = 0D; // // dblStrokeOffset // this.dblStrokeOffset.BackColorInvalid = System.Drawing.Color.Salmon; this.dblStrokeOffset.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.dblStrokeOffset, "dblStrokeOffset"); this.dblStrokeOffset.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.dblStrokeOffset.IsValid = true; this.dblStrokeOffset.Name = "dblStrokeOffset"; this.dblStrokeOffset.NumberFormat = null; this.dblStrokeOffset.RegularHelp = "Enter a double precision floating point value."; this.dblStrokeOffset.Value = 0D; // // radLineJoin // resources.ApplyResources(this.radLineJoin, "radLineJoin"); this.radLineJoin.Name = "radLineJoin"; this.ttHelp.SetToolTip(this.radLineJoin, resources.GetString("radLineJoin.ToolTip")); this.radLineJoin.Value = DotSpatial.Symbology.LineJoinType.Round; this.radLineJoin.ValueChanged += new System.EventHandler(this.radLineJoin_ValueChanged); // // dblWidthCartographic // this.dblWidthCartographic.BackColorInvalid = System.Drawing.Color.Salmon; this.dblWidthCartographic.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.dblWidthCartographic, "dblWidthCartographic"); this.dblWidthCartographic.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.dblWidthCartographic.IsValid = true; this.dblWidthCartographic.Name = "dblWidthCartographic"; this.dblWidthCartographic.NumberFormat = null; this.dblWidthCartographic.RegularHelp = "Enter a double precision floating point value."; this.ttHelp.SetToolTip(this.dblWidthCartographic, resources.GetString("dblWidthCartographic.ToolTip")); this.dblWidthCartographic.Value = 0D; this.dblWidthCartographic.TextChanged += new System.EventHandler(this.dblWidthCartographic_TextChanged); // // tabDash // this.tabDash.Controls.Add(this.dashControl1); resources.ApplyResources(this.tabDash, "tabDash"); this.tabDash.Name = "tabDash"; this.tabDash.UseVisualStyleBackColor = true; // // dashControl1 // this.dashControl1.BlockSize = new System.Drawing.SizeF(10F, 10F); this.dashControl1.ButtonDownDarkColor = System.Drawing.SystemColors.ControlDark; this.dashControl1.ButtonDownLitColor = System.Drawing.SystemColors.ActiveCaption; this.dashControl1.ButtonUpDarkColor = System.Drawing.SystemColors.Control; this.dashControl1.ButtonUpLitColor = System.Drawing.SystemColors.GradientInactiveCaption; resources.ApplyResources(this.dashControl1, "dashControl1"); this.dashControl1.HorizontalSlider.Color = System.Drawing.Color.Blue; this.dashControl1.HorizontalSlider.Image = null; this.dashControl1.HorizontalSlider.Position = ((System.Drawing.PointF)(resources.GetObject("resource.Position"))); this.dashControl1.HorizontalSlider.Size = new System.Drawing.SizeF(10F, 15F); this.dashControl1.HorizontalSlider.Visible = true; this.dashControl1.LineColor = System.Drawing.Color.Red; this.dashControl1.LineWidth = 0D; this.dashControl1.Name = "dashControl1"; this.ttHelp.SetToolTip(this.dashControl1, resources.GetString("dashControl1.ToolTip")); this.dashControl1.VerticalSlider.Color = System.Drawing.Color.Lime; this.dashControl1.VerticalSlider.Image = null; this.dashControl1.VerticalSlider.Position = ((System.Drawing.PointF)(resources.GetObject("resource.Position1"))); this.dashControl1.VerticalSlider.Size = new System.Drawing.SizeF(15F, 10F); this.dashControl1.VerticalSlider.Visible = true; // // tabDecoration // this.tabDecoration.Controls.Add(this.dblOffset); this.tabDecoration.Controls.Add(this.ccDecorations); this.tabDecoration.Controls.Add(this.btnEdit); this.tabDecoration.Controls.Add(this.label6); this.tabDecoration.Controls.Add(this.lblDecorationPreview); this.tabDecoration.Controls.Add(this.lblNumberOfPositions); this.tabDecoration.Controls.Add(this.nudDecorationCount); this.tabDecoration.Controls.Add(this.grpRotation); this.tabDecoration.Controls.Add(this.grpFlip); resources.ApplyResources(this.tabDecoration, "tabDecoration"); this.tabDecoration.Name = "tabDecoration"; this.tabDecoration.UseVisualStyleBackColor = true; // // dblOffset // this.dblOffset.BackColorInvalid = System.Drawing.Color.Salmon; this.dblOffset.BackColorRegular = System.Drawing.Color.Empty; resources.ApplyResources(this.dblOffset, "dblOffset"); this.dblOffset.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" + "ating point value."; this.dblOffset.IsValid = true; this.dblOffset.Name = "dblOffset"; this.dblOffset.NumberFormat = null; this.dblOffset.RegularHelp = "Enter a double precision floating point value."; this.dblOffset.Value = 0D; // // ccDecorations // resources.ApplyResources(this.ccDecorations, "ccDecorations"); this.ccDecorations.Name = "ccDecorations"; this.ttHelp.SetToolTip(this.ccDecorations, resources.GetString("ccDecorations.ToolTip")); // // btnEdit // resources.ApplyResources(this.btnEdit, "btnEdit"); this.btnEdit.Name = "btnEdit"; this.btnEdit.UseVisualStyleBackColor = true; this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click); // // label6 // resources.ApplyResources(this.label6, "label6"); this.label6.Name = "label6"; // // lblDecorationPreview // this.lblDecorationPreview.BackColor = System.Drawing.Color.White; this.lblDecorationPreview.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; resources.ApplyResources(this.lblDecorationPreview, "lblDecorationPreview"); this.lblDecorationPreview.Name = "lblDecorationPreview"; this.ttHelp.SetToolTip(this.lblDecorationPreview, resources.GetString("lblDecorationPreview.ToolTip")); // // lblNumberOfPositions // resources.ApplyResources(this.lblNumberOfPositions, "lblNumberOfPositions"); this.lblNumberOfPositions.Name = "lblNumberOfPositions"; // // nudDecorationCount // resources.ApplyResources(this.nudDecorationCount, "nudDecorationCount"); this.nudDecorationCount.Maximum = new decimal(new int[] { 999, 0, 0, 0}); this.nudDecorationCount.Name = "nudDecorationCount"; this.ttHelp.SetToolTip(this.nudDecorationCount, resources.GetString("nudDecorationCount.ToolTip")); this.nudDecorationCount.ValueChanged += new System.EventHandler(this.nudDecorationCount_ValueChanged); // // grpRotation // this.grpRotation.Controls.Add(this.radRotationFixed); this.grpRotation.Controls.Add(this.radRotationWithLine); resources.ApplyResources(this.grpRotation, "grpRotation"); this.grpRotation.Name = "grpRotation"; this.grpRotation.TabStop = false; // // radRotationFixed // resources.ApplyResources(this.radRotationFixed, "radRotationFixed"); this.radRotationFixed.Name = "radRotationFixed"; this.radRotationFixed.TabStop = true; this.ttHelp.SetToolTip(this.radRotationFixed, resources.GetString("radRotationFixed.ToolTip")); this.radRotationFixed.UseVisualStyleBackColor = true; // // radRotationWithLine // resources.ApplyResources(this.radRotationWithLine, "radRotationWithLine"); this.radRotationWithLine.Name = "radRotationWithLine"; this.radRotationWithLine.TabStop = true; this.ttHelp.SetToolTip(this.radRotationWithLine, resources.GetString("radRotationWithLine.ToolTip")); this.radRotationWithLine.UseVisualStyleBackColor = true; this.radRotationWithLine.CheckedChanged += new System.EventHandler(this.radRotationWithLine_CheckedChanged); // // grpFlip // this.grpFlip.Controls.Add(this.chkFlipFirst); this.grpFlip.Controls.Add(this.chkFlipAll); resources.ApplyResources(this.grpFlip, "grpFlip"); this.grpFlip.Name = "grpFlip"; this.grpFlip.TabStop = false; this.ttHelp.SetToolTip(this.grpFlip, resources.GetString("grpFlip.ToolTip")); // // chkFlipFirst // resources.ApplyResources(this.chkFlipFirst, "chkFlipFirst"); this.chkFlipFirst.Name = "chkFlipFirst"; this.chkFlipFirst.UseVisualStyleBackColor = true; this.chkFlipFirst.CheckedChanged += new System.EventHandler(this.chkFlipFirst_CheckedChanged); // // chkFlipAll // resources.ApplyResources(this.chkFlipAll, "chkFlipAll"); this.chkFlipAll.Name = "chkFlipAll"; this.chkFlipAll.UseVisualStyleBackColor = true; this.chkFlipAll.CheckedChanged += new System.EventHandler(this.chkFlipAll_CheckedChanged); // // ccStrokes // resources.ApplyResources(this.ccStrokes, "ccStrokes"); this.ccStrokes.Name = "ccStrokes"; this.ttHelp.SetToolTip(this.ccStrokes, resources.GetString("ccStrokes.ToolTip")); // // DetailedLineSymbolControl // this.Controls.Add(this.ccStrokes); this.Controls.Add(this.tabStrokeProperties); this.Controls.Add(this.label1); this.Controls.Add(this.groupBox1); this.Controls.Add(this.cmbStrokeType); this.Name = "DetailedLineSymbolControl"; resources.ApplyResources(this, "$this"); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.tabStrokeProperties.ResumeLayout(false); this.tabSimple.ResumeLayout(false); this.tabSimple.PerformLayout(); this.tabCartographic.ResumeLayout(false); this.tabCartographic.PerformLayout(); this.grpCaps.ResumeLayout(false); this.grpCaps.PerformLayout(); this.tabDash.ResumeLayout(false); this.tabDecoration.ResumeLayout(false); this.tabDecoration.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.nudDecorationCount)).EndInit(); this.grpRotation.ResumeLayout(false); this.grpRotation.PerformLayout(); this.grpFlip.ResumeLayout(false); this.grpFlip.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }