asciipumper

- mspaint style program to create irc ascii art
git clone git://git.acid.vegas/asciipumper.git
Log | Files | Refs | Archive | README

OptionsForm.Designer.cs (19269B)

      1 namespace AsciiPumper
      2 {
      3 	partial class OptionsForm
      4 	{
      5 		/// <summary>
      6 		/// Required designer variable.
      7 		/// </summary>
      8 		private System.ComponentModel.IContainer components = null;
      9 
     10 		/// <summary>
     11 		/// Clean up any resources being used.
     12 		/// </summary>
     13 		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
     14 		protected override void Dispose(bool disposing)
     15 		{
     16 			if (disposing && (components != null))
     17 			{
     18 				components.Dispose();
     19 			}
     20 			base.Dispose(disposing);
     21 		}
     22 
     23 		#region Windows Form Designer generated code
     24 
     25 		/// <summary>
     26 		/// Required method for Designer support - do not modify
     27 		/// the contents of this method with the code editor.
     28 		/// </summary>
     29 		private void InitializeComponent()
     30 		{
     31 			this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     32 			this.lbCategories = new System.Windows.Forms.ListBox();
     33 			this.grpEditor = new System.Windows.Forms.GroupBox();
     34 			this.tableEditor = new System.Windows.Forms.TableLayoutPanel();
     35 			this.lblEditorFont = new System.Windows.Forms.Label();
     36 			this.lblSampleText = new System.Windows.Forms.Label();
     37 			this.btnEditorFont = new System.Windows.Forms.Button();
     38 			this.lblCellWidth = new System.Windows.Forms.Label();
     39 			this.panel1 = new System.Windows.Forms.Panel();
     40 			this.lblPx1 = new System.Windows.Forms.Label();
     41 			this.numCellWidth = new System.Windows.Forms.NumericUpDown();
     42 			this.lblCellHeight = new System.Windows.Forms.Label();
     43 			this.panel2 = new System.Windows.Forms.Panel();
     44 			this.lblPx2 = new System.Windows.Forms.Label();
     45 			this.numCellHeight = new System.Windows.Forms.NumericUpDown();
     46 			this.lblSeperatorColor = new System.Windows.Forms.Label();
     47 			this.panel3 = new System.Windows.Forms.Panel();
     48 			this.btnSeperatorColor = new System.Windows.Forms.Button();
     49 			this.colorSeperator = new System.Windows.Forms.PictureBox();
     50 			this.lblHighlightColor = new System.Windows.Forms.Label();
     51 			this.panel4 = new System.Windows.Forms.Panel();
     52 			this.btnHighlightColor = new System.Windows.Forms.Button();
     53 			this.colorHighlight = new System.Windows.Forms.PictureBox();
     54 			this.btnOK = new System.Windows.Forms.Button();
     55 			this.btnApply = new System.Windows.Forms.Button();
     56 			this.btnCancel = new System.Windows.Forms.Button();
     57 			this.fontdlgEditorFont = new System.Windows.Forms.FontDialog();
     58 			this.colordlgSeperator = new System.Windows.Forms.ColorDialog();
     59 			this.colordlgHighlight = new System.Windows.Forms.ColorDialog();
     60 			this.splitContainer1.Panel1.SuspendLayout();
     61 			this.splitContainer1.Panel2.SuspendLayout();
     62 			this.splitContainer1.SuspendLayout();
     63 			this.grpEditor.SuspendLayout();
     64 			this.tableEditor.SuspendLayout();
     65 			this.panel1.SuspendLayout();
     66 			((System.ComponentModel.ISupportInitialize)(this.numCellWidth)).BeginInit();
     67 			this.panel2.SuspendLayout();
     68 			((System.ComponentModel.ISupportInitialize)(this.numCellHeight)).BeginInit();
     69 			this.panel3.SuspendLayout();
     70 			((System.ComponentModel.ISupportInitialize)(this.colorSeperator)).BeginInit();
     71 			this.panel4.SuspendLayout();
     72 			((System.ComponentModel.ISupportInitialize)(this.colorHighlight)).BeginInit();
     73 			this.SuspendLayout();
     74 			// 
     75 			// splitContainer1
     76 			// 
     77 			this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     78 						| System.Windows.Forms.AnchorStyles.Left)
     79 						| System.Windows.Forms.AnchorStyles.Right)));
     80 			this.splitContainer1.Location = new System.Drawing.Point(0, 0);
     81 			this.splitContainer1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     82 			this.splitContainer1.Name = "splitContainer1";
     83 			// 
     84 			// splitContainer1.Panel1
     85 			// 
     86 			this.splitContainer1.Panel1.Controls.Add(this.lbCategories);
     87 			this.splitContainer1.Panel1MinSize = 85;
     88 			// 
     89 			// splitContainer1.Panel2
     90 			// 
     91 			this.splitContainer1.Panel2.Controls.Add(this.grpEditor);
     92 			this.splitContainer1.Size = new System.Drawing.Size(508, 330);
     93 			this.splitContainer1.SplitterDistance = 95;
     94 			this.splitContainer1.SplitterWidth = 5;
     95 			this.splitContainer1.TabIndex = 0;
     96 			// 
     97 			// lbCategories
     98 			// 
     99 			this.lbCategories.Dock = System.Windows.Forms.DockStyle.Fill;
    100 			this.lbCategories.FormattingEnabled = true;
    101 			this.lbCategories.ItemHeight = 17;
    102 			this.lbCategories.Items.AddRange(new object[] {
    103             "Editor"});
    104 			this.lbCategories.Location = new System.Drawing.Point(0, 0);
    105 			this.lbCategories.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
    106 			this.lbCategories.Name = "lbCategories";
    107 			this.lbCategories.Size = new System.Drawing.Size(95, 327);
    108 			this.lbCategories.TabIndex = 0;
    109 			// 
    110 			// grpEditor
    111 			// 
    112 			this.grpEditor.Controls.Add(this.tableEditor);
    113 			this.grpEditor.Dock = System.Windows.Forms.DockStyle.Fill;
    114 			this.grpEditor.Location = new System.Drawing.Point(0, 0);
    115 			this.grpEditor.Name = "grpEditor";
    116 			this.grpEditor.Size = new System.Drawing.Size(408, 330);
    117 			this.grpEditor.TabIndex = 1;
    118 			this.grpEditor.TabStop = false;
    119 			this.grpEditor.Text = "Editor";
    120 			// 
    121 			// tableEditor
    122 			// 
    123 			this.tableEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
    124 						| System.Windows.Forms.AnchorStyles.Left)
    125 						| System.Windows.Forms.AnchorStyles.Right)));
    126 			this.tableEditor.ColumnCount = 3;
    127 			this.tableEditor.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 40.44586F));
    128 			this.tableEditor.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 59.55414F));
    129 			this.tableEditor.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 82F));
    130 			this.tableEditor.Controls.Add(this.lblEditorFont, 0, 0);
    131 			this.tableEditor.Controls.Add(this.lblSampleText, 1, 0);
    132 			this.tableEditor.Controls.Add(this.btnEditorFont, 2, 0);
    133 			this.tableEditor.Controls.Add(this.lblCellWidth, 0, 1);
    134 			this.tableEditor.Controls.Add(this.panel1, 1, 1);
    135 			this.tableEditor.Controls.Add(this.lblCellHeight, 0, 2);
    136 			this.tableEditor.Controls.Add(this.panel2, 1, 2);
    137 			this.tableEditor.Controls.Add(this.lblSeperatorColor, 0, 3);
    138 			this.tableEditor.Controls.Add(this.panel3, 1, 3);
    139 			this.tableEditor.Controls.Add(this.lblHighlightColor, 0, 4);
    140 			this.tableEditor.Controls.Add(this.panel4, 1, 4);
    141 			this.tableEditor.Location = new System.Drawing.Point(6, 24);
    142 			this.tableEditor.Name = "tableEditor";
    143 			this.tableEditor.RowCount = 6;
    144 			this.tableEditor.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 44.28571F));
    145 			this.tableEditor.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 55.71429F));
    146 			this.tableEditor.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
    147 			this.tableEditor.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
    148 			this.tableEditor.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 35F));
    149 			this.tableEditor.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 134F));
    150 			this.tableEditor.Size = new System.Drawing.Size(396, 300);
    151 			this.tableEditor.TabIndex = 0;
    152 			// 
    153 			// lblEditorFont
    154 			// 
    155 			this.lblEditorFont.AutoSize = true;
    156 			this.lblEditorFont.Location = new System.Drawing.Point(3, 0);
    157 			this.lblEditorFont.Name = "lblEditorFont";
    158 			this.lblEditorFont.Size = new System.Drawing.Size(73, 17);
    159 			this.lblEditorFont.TabIndex = 0;
    160 			this.lblEditorFont.Text = "Editor font:";
    161 			// 
    162 			// lblSampleText
    163 			// 
    164 			this.lblSampleText.AutoSize = true;
    165 			this.lblSampleText.Location = new System.Drawing.Point(130, 0);
    166 			this.lblSampleText.Name = "lblSampleText";
    167 			this.lblSampleText.Size = new System.Drawing.Size(76, 17);
    168 			this.lblSampleText.TabIndex = 1;
    169 			this.lblSampleText.Text = "Sample text";
    170 			// 
    171 			// btnEditorFont
    172 			// 
    173 			this.btnEditorFont.Location = new System.Drawing.Point(316, 3);
    174 			this.btnEditorFont.Name = "btnEditorFont";
    175 			this.btnEditorFont.Size = new System.Drawing.Size(25, 23);
    176 			this.btnEditorFont.TabIndex = 2;
    177 			this.btnEditorFont.Text = "...";
    178 			this.btnEditorFont.UseVisualStyleBackColor = true;
    179 			this.btnEditorFont.Click += new System.EventHandler(this.btnEditorFont_Click);
    180 			// 
    181 			// lblCellWidth
    182 			// 
    183 			this.lblCellWidth.AutoSize = true;
    184 			this.lblCellWidth.Location = new System.Drawing.Point(3, 29);
    185 			this.lblCellWidth.Name = "lblCellWidth";
    186 			this.lblCellWidth.Size = new System.Drawing.Size(67, 17);
    187 			this.lblCellWidth.TabIndex = 3;
    188 			this.lblCellWidth.Text = "Cell width:";
    189 			// 
    190 			// panel1
    191 			// 
    192 			this.panel1.Controls.Add(this.lblPx1);
    193 			this.panel1.Controls.Add(this.numCellWidth);
    194 			this.panel1.Location = new System.Drawing.Point(130, 32);
    195 			this.panel1.Name = "panel1";
    196 			this.panel1.Size = new System.Drawing.Size(180, 30);
    197 			this.panel1.TabIndex = 4;
    198 			// 
    199 			// lblPx1
    200 			// 
    201 			this.lblPx1.AutoSize = true;
    202 			this.lblPx1.Location = new System.Drawing.Point(85, 5);
    203 			this.lblPx1.Name = "lblPx1";
    204 			this.lblPx1.Size = new System.Drawing.Size(22, 17);
    205 			this.lblPx1.TabIndex = 1;
    206 			this.lblPx1.Text = "px";
    207 			// 
    208 			// numCellWidth
    209 			// 
    210 			this.numCellWidth.Location = new System.Drawing.Point(3, 3);
    211 			this.numCellWidth.Minimum = new decimal(new int[] {
    212             5,
    213             0,
    214             0,
    215             0});
    216 			this.numCellWidth.Name = "numCellWidth";
    217 			this.numCellWidth.Size = new System.Drawing.Size(76, 25);
    218 			this.numCellWidth.TabIndex = 0;
    219 			this.numCellWidth.Value = new decimal(new int[] {
    220             5,
    221             0,
    222             0,
    223             0});
    224 			// 
    225 			// lblCellHeight
    226 			// 
    227 			this.lblCellHeight.AutoSize = true;
    228 			this.lblCellHeight.Location = new System.Drawing.Point(3, 65);
    229 			this.lblCellHeight.Name = "lblCellHeight";
    230 			this.lblCellHeight.Size = new System.Drawing.Size(72, 17);
    231 			this.lblCellHeight.TabIndex = 5;
    232 			this.lblCellHeight.Text = "Cell height:";
    233 			// 
    234 			// panel2
    235 			// 
    236 			this.panel2.Controls.Add(this.lblPx2);
    237 			this.panel2.Controls.Add(this.numCellHeight);
    238 			this.panel2.Location = new System.Drawing.Point(130, 68);
    239 			this.panel2.Name = "panel2";
    240 			this.panel2.Size = new System.Drawing.Size(180, 24);
    241 			this.panel2.TabIndex = 6;
    242 			// 
    243 			// lblPx2
    244 			// 
    245 			this.lblPx2.AutoSize = true;
    246 			this.lblPx2.Location = new System.Drawing.Point(85, 1);
    247 			this.lblPx2.Name = "lblPx2";
    248 			this.lblPx2.Size = new System.Drawing.Size(22, 17);
    249 			this.lblPx2.TabIndex = 3;
    250 			this.lblPx2.Text = "px";
    251 			// 
    252 			// numCellHeight
    253 			// 
    254 			this.numCellHeight.Location = new System.Drawing.Point(3, -1);
    255 			this.numCellHeight.Minimum = new decimal(new int[] {
    256             5,
    257             0,
    258             0,
    259             0});
    260 			this.numCellHeight.Name = "numCellHeight";
    261 			this.numCellHeight.Size = new System.Drawing.Size(76, 25);
    262 			this.numCellHeight.TabIndex = 2;
    263 			this.numCellHeight.Value = new decimal(new int[] {
    264             5,
    265             0,
    266             0,
    267             0});
    268 			// 
    269 			// lblSeperatorColor
    270 			// 
    271 			this.lblSeperatorColor.AutoSize = true;
    272 			this.lblSeperatorColor.Location = new System.Drawing.Point(3, 95);
    273 			this.lblSeperatorColor.Name = "lblSeperatorColor";
    274 			this.lblSeperatorColor.Size = new System.Drawing.Size(103, 17);
    275 			this.lblSeperatorColor.TabIndex = 7;
    276 			this.lblSeperatorColor.Text = "Seperator color:";
    277 			// 
    278 			// panel3
    279 			// 
    280 			this.panel3.Controls.Add(this.btnSeperatorColor);
    281 			this.panel3.Controls.Add(this.colorSeperator);
    282 			this.panel3.Location = new System.Drawing.Point(130, 98);
    283 			this.panel3.Name = "panel3";
    284 			this.panel3.Size = new System.Drawing.Size(180, 29);
    285 			this.panel3.TabIndex = 8;
    286 			// 
    287 			// btnSeperatorColor
    288 			// 
    289 			this.btnSeperatorColor.Location = new System.Drawing.Point(29, 3);
    290 			this.btnSeperatorColor.Name = "btnSeperatorColor";
    291 			this.btnSeperatorColor.Size = new System.Drawing.Size(25, 23);
    292 			this.btnSeperatorColor.TabIndex = 3;
    293 			this.btnSeperatorColor.Text = "...";
    294 			this.btnSeperatorColor.UseVisualStyleBackColor = true;
    295 			this.btnSeperatorColor.Click += new System.EventHandler(this.button1_Click);
    296 			// 
    297 			// colorSeperator
    298 			// 
    299 			this.colorSeperator.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
    300 			this.colorSeperator.Location = new System.Drawing.Point(3, 3);
    301 			this.colorSeperator.Name = "colorSeperator";
    302 			this.colorSeperator.Size = new System.Drawing.Size(20, 20);
    303 			this.colorSeperator.TabIndex = 0;
    304 			this.colorSeperator.TabStop = false;
    305 			// 
    306 			// lblHighlightColor
    307 			// 
    308 			this.lblHighlightColor.AutoSize = true;
    309 			this.lblHighlightColor.Location = new System.Drawing.Point(3, 130);
    310 			this.lblHighlightColor.Name = "lblHighlightColor";
    311 			this.lblHighlightColor.Size = new System.Drawing.Size(97, 17);
    312 			this.lblHighlightColor.TabIndex = 9;
    313 			this.lblHighlightColor.Text = "Highlight color:";
    314 			// 
    315 			// panel4
    316 			// 
    317 			this.panel4.Controls.Add(this.btnHighlightColor);
    318 			this.panel4.Controls.Add(this.colorHighlight);
    319 			this.panel4.Location = new System.Drawing.Point(130, 133);
    320 			this.panel4.Name = "panel4";
    321 			this.panel4.Size = new System.Drawing.Size(180, 29);
    322 			this.panel4.TabIndex = 10;
    323 			// 
    324 			// btnHighlightColor
    325 			// 
    326 			this.btnHighlightColor.Location = new System.Drawing.Point(29, 3);
    327 			this.btnHighlightColor.Name = "btnHighlightColor";
    328 			this.btnHighlightColor.Size = new System.Drawing.Size(25, 23);
    329 			this.btnHighlightColor.TabIndex = 5;
    330 			this.btnHighlightColor.Text = "...";
    331 			this.btnHighlightColor.UseVisualStyleBackColor = true;
    332 			this.btnHighlightColor.Click += new System.EventHandler(this.button1_Click_1);
    333 			// 
    334 			// colorHighlight
    335 			// 
    336 			this.colorHighlight.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
    337 			this.colorHighlight.Location = new System.Drawing.Point(3, 3);
    338 			this.colorHighlight.Name = "colorHighlight";
    339 			this.colorHighlight.Size = new System.Drawing.Size(20, 20);
    340 			this.colorHighlight.TabIndex = 4;
    341 			this.colorHighlight.TabStop = false;
    342 			// 
    343 			// btnOK
    344 			// 
    345 			this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
    346 			this.btnOK.Location = new System.Drawing.Point(213, 338);
    347 			this.btnOK.Name = "btnOK";
    348 			this.btnOK.Size = new System.Drawing.Size(91, 29);
    349 			this.btnOK.TabIndex = 1;
    350 			this.btnOK.Text = "&Ok";
    351 			this.btnOK.UseVisualStyleBackColor = true;
    352 			this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
    353 			// 
    354 			// btnApply
    355 			// 
    356 			this.btnApply.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
    357 			this.btnApply.Location = new System.Drawing.Point(310, 338);
    358 			this.btnApply.Name = "btnApply";
    359 			this.btnApply.Size = new System.Drawing.Size(91, 29);
    360 			this.btnApply.TabIndex = 2;
    361 			this.btnApply.Text = "&Apply";
    362 			this.btnApply.UseVisualStyleBackColor = true;
    363 			this.btnApply.Click += new System.EventHandler(this.btnApply_Click);
    364 			// 
    365 			// btnCancel
    366 			// 
    367 			this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
    368 			this.btnCancel.Location = new System.Drawing.Point(407, 338);
    369 			this.btnCancel.Name = "btnCancel";
    370 			this.btnCancel.Size = new System.Drawing.Size(91, 29);
    371 			this.btnCancel.TabIndex = 3;
    372 			this.btnCancel.Text = "&Cancel";
    373 			this.btnCancel.UseVisualStyleBackColor = true;
    374 			this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
    375 			// 
    376 			// OptionsForm
    377 			// 
    378 			this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
    379 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    380 			this.ClientSize = new System.Drawing.Size(510, 379);
    381 			this.Controls.Add(this.btnCancel);
    382 			this.Controls.Add(this.btnApply);
    383 			this.Controls.Add(this.btnOK);
    384 			this.Controls.Add(this.splitContainer1);
    385 			this.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
    386 			this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
    387 			this.Name = "OptionsForm";
    388 			this.ShowInTaskbar = false;
    389 			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
    390 			this.Text = "Ascii Pumper Options";
    391 			this.Load += new System.EventHandler(this.OptionsForm_Load);
    392 			this.splitContainer1.Panel1.ResumeLayout(false);
    393 			this.splitContainer1.Panel2.ResumeLayout(false);
    394 			this.splitContainer1.ResumeLayout(false);
    395 			this.grpEditor.ResumeLayout(false);
    396 			this.tableEditor.ResumeLayout(false);
    397 			this.tableEditor.PerformLayout();
    398 			this.panel1.ResumeLayout(false);
    399 			this.panel1.PerformLayout();
    400 			((System.ComponentModel.ISupportInitialize)(this.numCellWidth)).EndInit();
    401 			this.panel2.ResumeLayout(false);
    402 			this.panel2.PerformLayout();
    403 			((System.ComponentModel.ISupportInitialize)(this.numCellHeight)).EndInit();
    404 			this.panel3.ResumeLayout(false);
    405 			((System.ComponentModel.ISupportInitialize)(this.colorSeperator)).EndInit();
    406 			this.panel4.ResumeLayout(false);
    407 			((System.ComponentModel.ISupportInitialize)(this.colorHighlight)).EndInit();
    408 			this.ResumeLayout(false);
    409 
    410 		}
    411 
    412 		#endregion
    413 
    414 		private System.Windows.Forms.SplitContainer splitContainer1;
    415 		private System.Windows.Forms.ListBox lbCategories;
    416 		private System.Windows.Forms.GroupBox grpEditor;
    417 		private System.Windows.Forms.Button btnOK;
    418 		private System.Windows.Forms.Button btnApply;
    419 		private System.Windows.Forms.Button btnCancel;
    420 		private System.Windows.Forms.TableLayoutPanel tableEditor;
    421 		private System.Windows.Forms.Label lblEditorFont;
    422 		private System.Windows.Forms.Label lblSampleText;
    423 		private System.Windows.Forms.Button btnEditorFont;
    424 		private System.Windows.Forms.FontDialog fontdlgEditorFont;
    425 		private System.Windows.Forms.Label lblCellWidth;
    426 		private System.Windows.Forms.Panel panel1;
    427 		private System.Windows.Forms.Label lblPx1;
    428 		private System.Windows.Forms.NumericUpDown numCellWidth;
    429 		private System.Windows.Forms.Label lblCellHeight;
    430 		private System.Windows.Forms.Panel panel2;
    431 		private System.Windows.Forms.Label lblPx2;
    432 		private System.Windows.Forms.NumericUpDown numCellHeight;
    433 		private System.Windows.Forms.Label lblSeperatorColor;
    434 		private System.Windows.Forms.Panel panel3;
    435 		private System.Windows.Forms.PictureBox colorSeperator;
    436 		private System.Windows.Forms.Button btnSeperatorColor;
    437 		private System.Windows.Forms.ColorDialog colordlgSeperator;
    438 		private System.Windows.Forms.ColorDialog colordlgHighlight;
    439 		private System.Windows.Forms.Label lblHighlightColor;
    440 		private System.Windows.Forms.Panel panel4;
    441 		private System.Windows.Forms.Button btnHighlightColor;
    442 		private System.Windows.Forms.PictureBox colorHighlight;
    443 	}
    444 }