Click here to Skip to main content
15,896,348 members
Articles / Programming Languages / C#

A Code Project Article Editor with Live Preview

Rate me:
Please Sign up or sign in to vote.
4.84/5 (62 votes)
5 Aug 2009CPOL5 min read 113.8K   3.9K   148  
A tool to help author articles at The Code Project
namespace BobBuilder
{
	partial class DlgOptions
	{
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.IContainer components = null;

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
		protected override void Dispose( bool disposing )
		{
			if ( disposing && ( components != null ) )
			{
				components.Dispose();
			}
			base.Dispose( disposing );
		}

		#region Windows Form Designer generated code

		/// <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( DlgOptions ) );
			this.tabControl1 = new System.Windows.Forms.TabControl();
			this.tabPageMain = new System.Windows.Forms.TabPage();
			this.label5 = new System.Windows.Forms.Label();
			this.MaxHeading = new System.Windows.Forms.ComboBox();
			this.DownloadTemplate = new System.Windows.Forms.CheckBox();
			this.OpenLastFileAtLaunch = new System.Windows.Forms.CheckBox();
			this.OpenBrowserOnSecondMonitor = new System.Windows.Forms.CheckBox();
			this.tabPageEditor = new System.Windows.Forms.TabPage();
			this.Reset = new System.Windows.Forms.Button();
			this.btnFont = new System.Windows.Forms.Button();
			this.VerticalRulerRow = new System.Windows.Forms.NumericUpDown();
			this.label4 = new System.Windows.Forms.Label();
			this.IndentationSize = new System.Windows.Forms.NumericUpDown();
			this.label3 = new System.Windows.Forms.Label();
			this.TabIndent = new System.Windows.Forms.NumericUpDown();
			this.label2 = new System.Windows.Forms.Label();
			this.UseCustomLine = new System.Windows.Forms.CheckBox();
			this.label1 = new System.Windows.Forms.Label();
			this.IndentStyle = new System.Windows.Forms.ComboBox();
			this.EnableFolding = new System.Windows.Forms.CheckBox();
			this.ShowVerticalRuler = new System.Windows.Forms.CheckBox();
			this.ShowHorizontalRuler = new System.Windows.Forms.CheckBox();
			this.ConvertTabsToSpaces = new System.Windows.Forms.CheckBox();
			this.ShowEOLMarker = new System.Windows.Forms.CheckBox();
			this.ShowTabs = new System.Windows.Forms.CheckBox();
			this.ShowSpaces = new System.Windows.Forms.CheckBox();
			this.ShowInvalidLines = new System.Windows.Forms.CheckBox();
			this.LineViewFullRow = new System.Windows.Forms.CheckBox();
			this.MouseWheelTextZoom = new System.Windows.Forms.CheckBox();
			this.MouseWheelScrollDown = new System.Windows.Forms.CheckBox();
			this.UseAntiAliasedFont = new System.Windows.Forms.CheckBox();
			this.CutCopyWholeLine = new System.Windows.Forms.CheckBox();
			this.ShowMatchingBracket = new System.Windows.Forms.CheckBox();
			this.AllowCaretBeyondEOL = new System.Windows.Forms.CheckBox();
			this.IsIconBarVisible = new System.Windows.Forms.CheckBox();
			this.HideMouseCursor = new System.Windows.Forms.CheckBox();
			this.AutoInsertCurlyBracket = new System.Windows.Forms.CheckBox();
			this.ShowLineNumbers = new System.Windows.Forms.CheckBox();
			this.btnCancel = new System.Windows.Forms.Button();
			this.btnOk = new System.Windows.Forms.Button();
			this.label6 = new System.Windows.Forms.Label();
			this.PreLang = new System.Windows.Forms.TextBox();
			this.tabControl1.SuspendLayout();
			this.tabPageMain.SuspendLayout();
			this.tabPageEditor.SuspendLayout();
			( ( System.ComponentModel.ISupportInitialize ) ( this.VerticalRulerRow ) ).BeginInit();
			( ( System.ComponentModel.ISupportInitialize ) ( this.IndentationSize ) ).BeginInit();
			( ( System.ComponentModel.ISupportInitialize ) ( this.TabIndent ) ).BeginInit();
			this.SuspendLayout();
			// 
			// tabControl1
			// 
			this.tabControl1.Anchor = ( ( System.Windows.Forms.AnchorStyles ) ( ( ( ( System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom )
						| System.Windows.Forms.AnchorStyles.Left )
						| System.Windows.Forms.AnchorStyles.Right ) ) );
			this.tabControl1.Controls.Add( this.tabPageMain );
			this.tabControl1.Controls.Add( this.tabPageEditor );
			this.tabControl1.Location = new System.Drawing.Point( 12, 12 );
			this.tabControl1.Name = "tabControl1";
			this.tabControl1.SelectedIndex = 0;
			this.tabControl1.Size = new System.Drawing.Size( 498, 581 );
			this.tabControl1.TabIndex = 0;
			this.tabControl1.Selected += new System.Windows.Forms.TabControlEventHandler( this.tabControl1_Selected );
			// 
			// tabPageMain
			// 
			this.tabPageMain.Controls.Add( this.PreLang );
			this.tabPageMain.Controls.Add( this.label6 );
			this.tabPageMain.Controls.Add( this.label5 );
			this.tabPageMain.Controls.Add( this.MaxHeading );
			this.tabPageMain.Controls.Add( this.DownloadTemplate );
			this.tabPageMain.Controls.Add( this.OpenLastFileAtLaunch );
			this.tabPageMain.Controls.Add( this.OpenBrowserOnSecondMonitor );
			this.tabPageMain.Location = new System.Drawing.Point( 4, 22 );
			this.tabPageMain.Name = "tabPageMain";
			this.tabPageMain.Padding = new System.Windows.Forms.Padding( 3 );
			this.tabPageMain.Size = new System.Drawing.Size( 490, 555 );
			this.tabPageMain.TabIndex = 0;
			this.tabPageMain.Text = "Main";
			this.tabPageMain.UseVisualStyleBackColor = true;
			// 
			// label5
			// 
			this.label5.AutoSize = true;
			this.label5.Location = new System.Drawing.Point( 23, 153 );
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size( 238, 13 );
			this.label5.TabIndex = 4;
			this.label5.Text = "Max Heading level included in Table Of Contents";
			// 
			// MaxHeading
			// 
			this.MaxHeading.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.MaxHeading.FormattingEnabled = true;
			this.MaxHeading.Location = new System.Drawing.Point( 292, 150 );
			this.MaxHeading.Name = "MaxHeading";
			this.MaxHeading.Size = new System.Drawing.Size( 66, 21 );
			this.MaxHeading.TabIndex = 3;
			// 
			// DownloadTemplate
			// 
			this.DownloadTemplate.AutoSize = true;
			this.DownloadTemplate.Location = new System.Drawing.Point( 26, 112 );
			this.DownloadTemplate.Name = "DownloadTemplate";
			this.DownloadTemplate.Size = new System.Drawing.Size( 289, 17 );
			this.DownloadTemplate.TabIndex = 2;
			this.DownloadTemplate.Text = "Download template from CodeProject for new document";
			this.DownloadTemplate.UseVisualStyleBackColor = true;
			// 
			// OpenLastFileAtLaunch
			// 
			this.OpenLastFileAtLaunch.AutoSize = true;
			this.OpenLastFileAtLaunch.Location = new System.Drawing.Point( 26, 24 );
			this.OpenLastFileAtLaunch.Name = "OpenLastFileAtLaunch";
			this.OpenLastFileAtLaunch.Size = new System.Drawing.Size( 134, 17 );
			this.OpenLastFileAtLaunch.TabIndex = 1;
			this.OpenLastFileAtLaunch.Text = "Open last file at launch";
			this.OpenLastFileAtLaunch.UseVisualStyleBackColor = true;
			// 
			// OpenBrowserOnSecondMonitor
			// 
			this.OpenBrowserOnSecondMonitor.AutoSize = true;
			this.OpenBrowserOnSecondMonitor.Location = new System.Drawing.Point( 26, 67 );
			this.OpenBrowserOnSecondMonitor.Name = "OpenBrowserOnSecondMonitor";
			this.OpenBrowserOnSecondMonitor.Size = new System.Drawing.Size( 182, 17 );
			this.OpenBrowserOnSecondMonitor.TabIndex = 0;
			this.OpenBrowserOnSecondMonitor.Text = "Open browser on second monitor";
			this.OpenBrowserOnSecondMonitor.UseVisualStyleBackColor = true;
			// 
			// tabPageEditor
			// 
			this.tabPageEditor.Controls.Add( this.Reset );
			this.tabPageEditor.Controls.Add( this.btnFont );
			this.tabPageEditor.Controls.Add( this.VerticalRulerRow );
			this.tabPageEditor.Controls.Add( this.label4 );
			this.tabPageEditor.Controls.Add( this.IndentationSize );
			this.tabPageEditor.Controls.Add( this.label3 );
			this.tabPageEditor.Controls.Add( this.TabIndent );
			this.tabPageEditor.Controls.Add( this.label2 );
			this.tabPageEditor.Controls.Add( this.UseCustomLine );
			this.tabPageEditor.Controls.Add( this.label1 );
			this.tabPageEditor.Controls.Add( this.IndentStyle );
			this.tabPageEditor.Controls.Add( this.EnableFolding );
			this.tabPageEditor.Controls.Add( this.ShowVerticalRuler );
			this.tabPageEditor.Controls.Add( this.ShowHorizontalRuler );
			this.tabPageEditor.Controls.Add( this.ConvertTabsToSpaces );
			this.tabPageEditor.Controls.Add( this.ShowEOLMarker );
			this.tabPageEditor.Controls.Add( this.ShowTabs );
			this.tabPageEditor.Controls.Add( this.ShowSpaces );
			this.tabPageEditor.Controls.Add( this.ShowInvalidLines );
			this.tabPageEditor.Controls.Add( this.LineViewFullRow );
			this.tabPageEditor.Controls.Add( this.MouseWheelTextZoom );
			this.tabPageEditor.Controls.Add( this.MouseWheelScrollDown );
			this.tabPageEditor.Controls.Add( this.UseAntiAliasedFont );
			this.tabPageEditor.Controls.Add( this.CutCopyWholeLine );
			this.tabPageEditor.Controls.Add( this.ShowMatchingBracket );
			this.tabPageEditor.Controls.Add( this.AllowCaretBeyondEOL );
			this.tabPageEditor.Controls.Add( this.IsIconBarVisible );
			this.tabPageEditor.Controls.Add( this.HideMouseCursor );
			this.tabPageEditor.Controls.Add( this.AutoInsertCurlyBracket );
			this.tabPageEditor.Controls.Add( this.ShowLineNumbers );
			this.tabPageEditor.Location = new System.Drawing.Point( 4, 22 );
			this.tabPageEditor.Name = "tabPageEditor";
			this.tabPageEditor.Padding = new System.Windows.Forms.Padding( 3 );
			this.tabPageEditor.Size = new System.Drawing.Size( 490, 555 );
			this.tabPageEditor.TabIndex = 1;
			this.tabPageEditor.Text = "Editor";
			this.tabPageEditor.UseVisualStyleBackColor = true;
			// 
			// Reset
			// 
			this.Reset.Location = new System.Drawing.Point( 160, 501 );
			this.Reset.Name = "Reset";
			this.Reset.Size = new System.Drawing.Size( 170, 23 );
			this.Reset.TabIndex = 29;
			this.Reset.Text = "Reset to defaults !";
			this.Reset.UseVisualStyleBackColor = true;
			this.Reset.Click += new System.EventHandler( this.Reset_Click );
			// 
			// btnFont
			// 
			this.btnFont.Location = new System.Drawing.Point( 338, 184 );
			this.btnFont.Name = "btnFont";
			this.btnFont.Size = new System.Drawing.Size( 75, 23 );
			this.btnFont.TabIndex = 28;
			this.btnFont.Text = "Font";
			this.btnFont.UseVisualStyleBackColor = true;
			this.btnFont.Click += new System.EventHandler( this.Font_Click );
			// 
			// VerticalRulerRow
			// 
			this.VerticalRulerRow.Location = new System.Drawing.Point( 338, 85 );
			this.VerticalRulerRow.Maximum = new decimal( new int[] {
            1000,
            0,
            0,
            0} );
			this.VerticalRulerRow.Name = "VerticalRulerRow";
			this.VerticalRulerRow.Size = new System.Drawing.Size( 146, 20 );
			this.VerticalRulerRow.TabIndex = 27;
			// 
			// label4
			// 
			this.label4.AutoSize = true;
			this.label4.Location = new System.Drawing.Point( 226, 87 );
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size( 89, 13 );
			this.label4.TabIndex = 26;
			this.label4.Text = "VerticalRulerRow";
			// 
			// IndentationSize
			// 
			this.IndentationSize.Location = new System.Drawing.Point( 338, 59 );
			this.IndentationSize.Name = "IndentationSize";
			this.IndentationSize.Size = new System.Drawing.Size( 146, 20 );
			this.IndentationSize.TabIndex = 25;
			// 
			// label3
			// 
			this.label3.AutoSize = true;
			this.label3.Location = new System.Drawing.Point( 226, 61 );
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size( 80, 13 );
			this.label3.TabIndex = 24;
			this.label3.Text = "IndentationSize";
			// 
			// TabIndent
			// 
			this.TabIndent.Location = new System.Drawing.Point( 338, 33 );
			this.TabIndent.Name = "TabIndent";
			this.TabIndent.Size = new System.Drawing.Size( 146, 20 );
			this.TabIndent.TabIndex = 23;
			// 
			// label2
			// 
			this.label2.AutoSize = true;
			this.label2.Location = new System.Drawing.Point( 226, 35 );
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size( 58, 13 );
			this.label2.TabIndex = 22;
			this.label2.Text = "Tab indent";
			// 
			// UseCustomLine
			// 
			this.UseCustomLine.AutoSize = true;
			this.UseCustomLine.Location = new System.Drawing.Point( 6, 443 );
			this.UseCustomLine.Name = "UseCustomLine";
			this.UseCustomLine.Size = new System.Drawing.Size( 100, 17 );
			this.UseCustomLine.TabIndex = 21;
			this.UseCustomLine.Text = "UseCustomLine";
			this.UseCustomLine.UseVisualStyleBackColor = true;
			// 
			// label1
			// 
			this.label1.AutoSize = true;
			this.label1.Location = new System.Drawing.Point( 226, 9 );
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size( 60, 13 );
			this.label1.TabIndex = 20;
			this.label1.Text = "IndentStyle";
			// 
			// IndentStyle
			// 
			this.IndentStyle.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.IndentStyle.FormattingEnabled = true;
			this.IndentStyle.Location = new System.Drawing.Point( 338, 6 );
			this.IndentStyle.Name = "IndentStyle";
			this.IndentStyle.Size = new System.Drawing.Size( 146, 21 );
			this.IndentStyle.TabIndex = 19;
			// 
			// EnableFolding
			// 
			this.EnableFolding.AutoSize = true;
			this.EnableFolding.Location = new System.Drawing.Point( 6, 420 );
			this.EnableFolding.Name = "EnableFolding";
			this.EnableFolding.Size = new System.Drawing.Size( 93, 17 );
			this.EnableFolding.TabIndex = 18;
			this.EnableFolding.Text = "EnableFolding";
			this.EnableFolding.UseVisualStyleBackColor = true;
			// 
			// ShowVerticalRuler
			// 
			this.ShowVerticalRuler.AutoSize = true;
			this.ShowVerticalRuler.Location = new System.Drawing.Point( 6, 397 );
			this.ShowVerticalRuler.Name = "ShowVerticalRuler";
			this.ShowVerticalRuler.Size = new System.Drawing.Size( 113, 17 );
			this.ShowVerticalRuler.TabIndex = 17;
			this.ShowVerticalRuler.Text = "ShowVerticalRuler";
			this.ShowVerticalRuler.UseVisualStyleBackColor = true;
			// 
			// ShowHorizontalRuler
			// 
			this.ShowHorizontalRuler.AutoSize = true;
			this.ShowHorizontalRuler.Location = new System.Drawing.Point( 6, 374 );
			this.ShowHorizontalRuler.Name = "ShowHorizontalRuler";
			this.ShowHorizontalRuler.Size = new System.Drawing.Size( 125, 17 );
			this.ShowHorizontalRuler.TabIndex = 16;
			this.ShowHorizontalRuler.Text = "ShowHorizontalRuler";
			this.ShowHorizontalRuler.UseVisualStyleBackColor = true;
			// 
			// ConvertTabsToSpaces
			// 
			this.ConvertTabsToSpaces.AutoSize = true;
			this.ConvertTabsToSpaces.Location = new System.Drawing.Point( 6, 351 );
			this.ConvertTabsToSpaces.Name = "ConvertTabsToSpaces";
			this.ConvertTabsToSpaces.Size = new System.Drawing.Size( 136, 17 );
			this.ConvertTabsToSpaces.TabIndex = 15;
			this.ConvertTabsToSpaces.Text = "ConvertTabsToSpaces";
			this.ConvertTabsToSpaces.UseVisualStyleBackColor = true;
			// 
			// ShowEOLMarker
			// 
			this.ShowEOLMarker.AutoSize = true;
			this.ShowEOLMarker.Location = new System.Drawing.Point( 6, 328 );
			this.ShowEOLMarker.Name = "ShowEOLMarker";
			this.ShowEOLMarker.Size = new System.Drawing.Size( 107, 17 );
			this.ShowEOLMarker.TabIndex = 14;
			this.ShowEOLMarker.Text = "ShowEOLMarker";
			this.ShowEOLMarker.UseVisualStyleBackColor = true;
			// 
			// ShowTabs
			// 
			this.ShowTabs.AutoSize = true;
			this.ShowTabs.Location = new System.Drawing.Point( 6, 305 );
			this.ShowTabs.Name = "ShowTabs";
			this.ShowTabs.Size = new System.Drawing.Size( 77, 17 );
			this.ShowTabs.TabIndex = 13;
			this.ShowTabs.Text = "ShowTabs";
			this.ShowTabs.UseVisualStyleBackColor = true;
			// 
			// ShowSpaces
			// 
			this.ShowSpaces.AutoSize = true;
			this.ShowSpaces.Location = new System.Drawing.Point( 6, 282 );
			this.ShowSpaces.Name = "ShowSpaces";
			this.ShowSpaces.Size = new System.Drawing.Size( 89, 17 );
			this.ShowSpaces.TabIndex = 12;
			this.ShowSpaces.Text = "ShowSpaces";
			this.ShowSpaces.UseVisualStyleBackColor = true;
			// 
			// ShowInvalidLines
			// 
			this.ShowInvalidLines.AutoSize = true;
			this.ShowInvalidLines.Location = new System.Drawing.Point( 6, 259 );
			this.ShowInvalidLines.Name = "ShowInvalidLines";
			this.ShowInvalidLines.Size = new System.Drawing.Size( 109, 17 );
			this.ShowInvalidLines.TabIndex = 11;
			this.ShowInvalidLines.Text = "ShowInvalidLines";
			this.ShowInvalidLines.UseVisualStyleBackColor = true;
			// 
			// LineViewFullRow
			// 
			this.LineViewFullRow.AutoSize = true;
			this.LineViewFullRow.Location = new System.Drawing.Point( 6, 236 );
			this.LineViewFullRow.Name = "LineViewFullRow";
			this.LineViewFullRow.Size = new System.Drawing.Size( 107, 17 );
			this.LineViewFullRow.TabIndex = 10;
			this.LineViewFullRow.Text = "LineViewFullRow";
			this.LineViewFullRow.UseVisualStyleBackColor = true;
			// 
			// MouseWheelTextZoom
			// 
			this.MouseWheelTextZoom.AutoSize = true;
			this.MouseWheelTextZoom.Location = new System.Drawing.Point( 6, 213 );
			this.MouseWheelTextZoom.Name = "MouseWheelTextZoom";
			this.MouseWheelTextZoom.Size = new System.Drawing.Size( 137, 17 );
			this.MouseWheelTextZoom.TabIndex = 9;
			this.MouseWheelTextZoom.Text = "MouseWheelTextZoom";
			this.MouseWheelTextZoom.UseVisualStyleBackColor = true;
			// 
			// MouseWheelScrollDown
			// 
			this.MouseWheelScrollDown.AutoSize = true;
			this.MouseWheelScrollDown.Location = new System.Drawing.Point( 6, 190 );
			this.MouseWheelScrollDown.Name = "MouseWheelScrollDown";
			this.MouseWheelScrollDown.Size = new System.Drawing.Size( 143, 17 );
			this.MouseWheelScrollDown.TabIndex = 8;
			this.MouseWheelScrollDown.Text = "MouseWheelScrollDown";
			this.MouseWheelScrollDown.UseVisualStyleBackColor = true;
			// 
			// UseAntiAliasedFont
			// 
			this.UseAntiAliasedFont.AutoSize = true;
			this.UseAntiAliasedFont.Location = new System.Drawing.Point( 6, 167 );
			this.UseAntiAliasedFont.Name = "UseAntiAliasedFont";
			this.UseAntiAliasedFont.Size = new System.Drawing.Size( 118, 17 );
			this.UseAntiAliasedFont.TabIndex = 7;
			this.UseAntiAliasedFont.Text = "UseAntiAliasedFont";
			this.UseAntiAliasedFont.UseVisualStyleBackColor = true;
			// 
			// CutCopyWholeLine
			// 
			this.CutCopyWholeLine.AutoSize = true;
			this.CutCopyWholeLine.Location = new System.Drawing.Point( 6, 144 );
			this.CutCopyWholeLine.Name = "CutCopyWholeLine";
			this.CutCopyWholeLine.Size = new System.Drawing.Size( 117, 17 );
			this.CutCopyWholeLine.TabIndex = 6;
			this.CutCopyWholeLine.Text = "CutCopyWholeLine";
			this.CutCopyWholeLine.UseVisualStyleBackColor = true;
			// 
			// ShowMatchingBracket
			// 
			this.ShowMatchingBracket.AutoSize = true;
			this.ShowMatchingBracket.Location = new System.Drawing.Point( 6, 121 );
			this.ShowMatchingBracket.Name = "ShowMatchingBracket";
			this.ShowMatchingBracket.Size = new System.Drawing.Size( 134, 17 );
			this.ShowMatchingBracket.TabIndex = 5;
			this.ShowMatchingBracket.Text = "ShowMatchingBracket";
			this.ShowMatchingBracket.UseVisualStyleBackColor = true;
			// 
			// AllowCaretBeyondEOL
			// 
			this.AllowCaretBeyondEOL.AutoSize = true;
			this.AllowCaretBeyondEOL.Location = new System.Drawing.Point( 6, 75 );
			this.AllowCaretBeyondEOL.Name = "AllowCaretBeyondEOL";
			this.AllowCaretBeyondEOL.Size = new System.Drawing.Size( 133, 17 );
			this.AllowCaretBeyondEOL.TabIndex = 4;
			this.AllowCaretBeyondEOL.Text = "AllowCaretBeyondEOL";
			this.AllowCaretBeyondEOL.UseVisualStyleBackColor = true;
			// 
			// IsIconBarVisible
			// 
			this.IsIconBarVisible.AutoSize = true;
			this.IsIconBarVisible.Location = new System.Drawing.Point( 6, 52 );
			this.IsIconBarVisible.Name = "IsIconBarVisible";
			this.IsIconBarVisible.Size = new System.Drawing.Size( 101, 17 );
			this.IsIconBarVisible.TabIndex = 3;
			this.IsIconBarVisible.Text = "IsIconBarVisible";
			this.IsIconBarVisible.UseVisualStyleBackColor = true;
			// 
			// HideMouseCursor
			// 
			this.HideMouseCursor.AutoSize = true;
			this.HideMouseCursor.Location = new System.Drawing.Point( 6, 29 );
			this.HideMouseCursor.Name = "HideMouseCursor";
			this.HideMouseCursor.Size = new System.Drawing.Size( 110, 17 );
			this.HideMouseCursor.TabIndex = 2;
			this.HideMouseCursor.Text = "HideMouseCursor";
			this.HideMouseCursor.UseVisualStyleBackColor = true;
			// 
			// AutoInsertCurlyBracket
			// 
			this.AutoInsertCurlyBracket.AutoSize = true;
			this.AutoInsertCurlyBracket.Location = new System.Drawing.Point( 6, 98 );
			this.AutoInsertCurlyBracket.Name = "AutoInsertCurlyBracket";
			this.AutoInsertCurlyBracket.Size = new System.Drawing.Size( 134, 17 );
			this.AutoInsertCurlyBracket.TabIndex = 1;
			this.AutoInsertCurlyBracket.Text = "AutoInsertCurlyBracket";
			this.AutoInsertCurlyBracket.UseVisualStyleBackColor = true;
			// 
			// ShowLineNumbers
			// 
			this.ShowLineNumbers.AutoSize = true;
			this.ShowLineNumbers.Location = new System.Drawing.Point( 6, 6 );
			this.ShowLineNumbers.Name = "ShowLineNumbers";
			this.ShowLineNumbers.Size = new System.Drawing.Size( 115, 17 );
			this.ShowLineNumbers.TabIndex = 0;
			this.ShowLineNumbers.Text = "ShowLineNumbers";
			this.ShowLineNumbers.UseVisualStyleBackColor = true;
			// 
			// btnCancel
			// 
			this.btnCancel.Anchor = ( ( System.Windows.Forms.AnchorStyles ) ( ( System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right ) ) );
			this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.btnCancel.Location = new System.Drawing.Point( 435, 599 );
			this.btnCancel.Name = "btnCancel";
			this.btnCancel.Size = new System.Drawing.Size( 75, 23 );
			this.btnCancel.TabIndex = 1;
			this.btnCancel.Text = "Cancel";
			this.btnCancel.UseVisualStyleBackColor = true;
			// 
			// btnOk
			// 
			this.btnOk.Anchor = ( ( System.Windows.Forms.AnchorStyles ) ( ( System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right ) ) );
			this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.btnOk.Location = new System.Drawing.Point( 354, 599 );
			this.btnOk.Name = "btnOk";
			this.btnOk.Size = new System.Drawing.Size( 75, 23 );
			this.btnOk.TabIndex = 2;
			this.btnOk.Text = "OK";
			this.btnOk.UseVisualStyleBackColor = true;
			this.btnOk.Click += new System.EventHandler( this.btnOk_Click );
			// 
			// label6
			// 
			this.label6.AutoSize = true;
			this.label6.Location = new System.Drawing.Point( 23, 201 );
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size( 174, 13 );
			this.label6.TabIndex = 5;
			this.label6.Text = "Language in <pre lang=\"XXX\"> tag";
			// 
			// PreLang
			// 
			this.PreLang.Location = new System.Drawing.Point( 215, 198 );
			this.PreLang.Name = "PreLang";
			this.PreLang.Size = new System.Drawing.Size( 143, 20 );
			this.PreLang.TabIndex = 6;
			// 
			// DlgOptions
			// 
			this.AcceptButton = this.btnOk;
			this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 13F );
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.CancelButton = this.btnCancel;
			this.ClientSize = new System.Drawing.Size( 522, 634 );
			this.Controls.Add( this.btnOk );
			this.Controls.Add( this.btnCancel );
			this.Controls.Add( this.tabControl1 );
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Icon = ( ( System.Drawing.Icon ) ( resources.GetObject( "$this.Icon" ) ) );
			this.Name = "DlgOptions";
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "Options";
			this.Load += new System.EventHandler( this.DlgOptions_Load );
			this.tabControl1.ResumeLayout( false );
			this.tabPageMain.ResumeLayout( false );
			this.tabPageMain.PerformLayout();
			this.tabPageEditor.ResumeLayout( false );
			this.tabPageEditor.PerformLayout();
			( ( System.ComponentModel.ISupportInitialize ) ( this.VerticalRulerRow ) ).EndInit();
			( ( System.ComponentModel.ISupportInitialize ) ( this.IndentationSize ) ).EndInit();
			( ( System.ComponentModel.ISupportInitialize ) ( this.TabIndent ) ).EndInit();
			this.ResumeLayout( false );

		}

		#endregion

		private System.Windows.Forms.TabControl tabControl1;
		private System.Windows.Forms.TabPage tabPageMain;
		private System.Windows.Forms.TabPage tabPageEditor;
		private System.Windows.Forms.Button btnCancel;
		private System.Windows.Forms.Button btnOk;
		private System.Windows.Forms.CheckBox ShowLineNumbers;
		private System.Windows.Forms.CheckBox AutoInsertCurlyBracket;
		private System.Windows.Forms.CheckBox HideMouseCursor;
		private System.Windows.Forms.CheckBox IsIconBarVisible;
		private System.Windows.Forms.CheckBox AllowCaretBeyondEOL;
		private System.Windows.Forms.CheckBox ShowMatchingBracket;
		private System.Windows.Forms.CheckBox CutCopyWholeLine;
		private System.Windows.Forms.CheckBox UseAntiAliasedFont;
		private System.Windows.Forms.CheckBox MouseWheelScrollDown;
		private System.Windows.Forms.CheckBox MouseWheelTextZoom;
		private System.Windows.Forms.CheckBox LineViewFullRow;
		private System.Windows.Forms.CheckBox ShowInvalidLines;
		private System.Windows.Forms.CheckBox ShowSpaces;
		private System.Windows.Forms.CheckBox ShowTabs;
		private System.Windows.Forms.CheckBox ShowEOLMarker;
		private System.Windows.Forms.CheckBox ConvertTabsToSpaces;
		private System.Windows.Forms.CheckBox ShowHorizontalRuler;
		private System.Windows.Forms.CheckBox ShowVerticalRuler;
		private System.Windows.Forms.CheckBox EnableFolding;
		private System.Windows.Forms.ComboBox IndentStyle;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.CheckBox UseCustomLine;
		private System.Windows.Forms.NumericUpDown TabIndent;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.NumericUpDown IndentationSize;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.NumericUpDown VerticalRulerRow;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.CheckBox OpenBrowserOnSecondMonitor;
		private System.Windows.Forms.CheckBox OpenLastFileAtLaunch;
		private System.Windows.Forms.Button btnFont;
		private System.Windows.Forms.Button Reset;
		private System.Windows.Forms.CheckBox DownloadTemplate;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.ComboBox MaxHeading;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.TextBox PreLang;
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United Kingdom United Kingdom
I discovered C# and .NET 1.0 Beta 1 in late 2000 and loved them immediately.
I have been writing software professionally in C# ever since

In real life, I have spent 3 years travelling abroad,
I have held a UK Private Pilots Licence for 20 years,
and I am a PADI Divemaster.

I now live near idyllic Bournemouth in England.

I can work 'virtually' anywhere!

Comments and Discussions