588 lines
		
	
	
		
			29 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			588 lines
		
	
	
		
			29 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Volian.Controls.Library
 | |
| {
 | |
| 	partial class FindReplace
 | |
| 	{
 | |
| 		/// <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 (cmboFindText.Items.Count == 0)
 | |
| 				Properties.Settings.Default["FindTextList"] = null;
 | |
| 			else
 | |
| 			{
 | |
| 				System.Collections.Specialized.StringCollection lstfnd = new System.Collections.Specialized.StringCollection();
 | |
| 				foreach (string str in cmboFindText.Items)
 | |
| 					lstfnd.Add(str);
 | |
| 				Properties.Settings.Default.FindTextList = lstfnd;
 | |
| 			}
 | |
| 			if (cmboReplaceText.Items.Count == 0)
 | |
| 				Properties.Settings.Default["ReplaceTextList"] = null;
 | |
| 			else
 | |
| 			{
 | |
| 				System.Collections.Specialized.StringCollection lstrpl = new System.Collections.Specialized.StringCollection();
 | |
| 				foreach (string str in cmboReplaceText.Items)
 | |
| 					lstrpl.Add(str);
 | |
| 				Properties.Settings.Default.ReplaceTextList = lstrpl;				
 | |
| 			}
 | |
| 			Properties.Settings.Default.Save();
 | |
| 			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()
 | |
| 		{
 | |
| 			this.components = new System.ComponentModel.Container();
 | |
| 			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FindReplace));
 | |
| 			this.btnReplace = new DevComponents.DotNetBar.ButtonX();
 | |
| 			this.btnFndRplDone = new DevComponents.DotNetBar.ButtonX();
 | |
| 			this.btnFindNext = new DevComponents.DotNetBar.ButtonX();
 | |
| 			this.cmboReplaceText = new DevComponents.DotNetBar.Controls.ComboBoxEx();
 | |
| 			this.lblRplTxt = new DevComponents.DotNetBar.LabelX();
 | |
| 			this.cmboFindText = new DevComponents.DotNetBar.Controls.ComboBoxEx();
 | |
| 			this.labelX3 = new DevComponents.DotNetBar.LabelX();
 | |
| 			this.btnRplAll = new DevComponents.DotNetBar.ButtonX();
 | |
| 			this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
 | |
| 			this.contextMenuBar1 = new DevComponents.DotNetBar.ContextMenuBar();
 | |
| 			this.btnCmFndRpl = new DevComponents.DotNetBar.ButtonItem();
 | |
| 			this.btnCmEdit = new DevComponents.DotNetBar.ButtonItem();
 | |
| 			this.btnCmCut = new DevComponents.DotNetBar.ButtonItem();
 | |
| 			this.btnCmCopy = new DevComponents.DotNetBar.ButtonItem();
 | |
| 			this.btnCmPaste = new DevComponents.DotNetBar.ButtonItem();
 | |
| 			this.btnCmInsert = new DevComponents.DotNetBar.ButtonItem();
 | |
| 			this.btnCmHardSp = new DevComponents.DotNetBar.ButtonItem();
 | |
| 			this.btnCmSymbol = new DevComponents.DotNetBar.ButtonItem();
 | |
| 			this.galSymbols = new DevComponents.DotNetBar.GalleryContainer();
 | |
| 			this.cbxReverse = new DevComponents.DotNetBar.Controls.CheckBoxX();
 | |
| 			this.cbxWholeWord = new DevComponents.DotNetBar.Controls.CheckBoxX();
 | |
| 			this.cbxCaseSensitive = new DevComponents.DotNetBar.Controls.CheckBoxX();
 | |
| 			this.cmbScope = new DevComponents.DotNetBar.Controls.ComboBoxEx();
 | |
| 			this.comboItem1 = new DevComponents.Editors.ComboItem();
 | |
| 			this.comboItem2 = new DevComponents.Editors.ComboItem();
 | |
| 			this.comboItem3 = new DevComponents.Editors.ComboItem();
 | |
| 			this.comboItem4 = new DevComponents.Editors.ComboItem();
 | |
| 			this.labelX1 = new DevComponents.DotNetBar.LabelX();
 | |
| 			this.btnBookMrkAll = new DevComponents.DotNetBar.ButtonX();
 | |
| 			this.tabControl1 = new DevComponents.DotNetBar.TabControl();
 | |
| 			this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
 | |
| 			this.tabFind = new DevComponents.DotNetBar.TabItem(this.components);
 | |
| 			this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
 | |
| 			this.tabReplace = new DevComponents.DotNetBar.TabItem(this.components);
 | |
| 			this.panelEx1.SuspendLayout();
 | |
| 			((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).BeginInit();
 | |
| 			((System.ComponentModel.ISupportInitialize)(this.tabControl1)).BeginInit();
 | |
| 			this.tabControl1.SuspendLayout();
 | |
| 			this.SuspendLayout();
 | |
| 			// 
 | |
| 			// btnReplace
 | |
| 			// 
 | |
| 			this.btnReplace.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
 | |
| 			this.btnReplace.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
 | |
| 			this.btnReplace.Location = new System.Drawing.Point(200, 149);
 | |
| 			this.btnReplace.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.btnReplace.Name = "btnReplace";
 | |
| 			this.btnReplace.Size = new System.Drawing.Size(56, 28);
 | |
| 			this.btnReplace.TabIndex = 9;
 | |
| 			this.btnReplace.Text = "Replace";
 | |
| 			this.btnReplace.Visible = false;
 | |
| 			this.btnReplace.Click += new System.EventHandler(this.btnReplace_Click);
 | |
| 			// 
 | |
| 			// btnFndRplDone
 | |
| 			// 
 | |
| 			this.btnFndRplDone.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
 | |
| 			this.btnFndRplDone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
 | |
| 			this.btnFndRplDone.DialogResult = System.Windows.Forms.DialogResult.Cancel;
 | |
| 			this.btnFndRplDone.Location = new System.Drawing.Point(368, 149);
 | |
| 			this.btnFndRplDone.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.btnFndRplDone.Name = "btnFndRplDone";
 | |
| 			this.btnFndRplDone.Size = new System.Drawing.Size(56, 27);
 | |
| 			this.btnFndRplDone.TabIndex = 11;
 | |
| 			this.btnFndRplDone.Text = "Done";
 | |
| 			this.btnFndRplDone.Click += new System.EventHandler(this.btnFndRplDone_Click);
 | |
| 			// 
 | |
| 			// btnFindNext
 | |
| 			// 
 | |
| 			this.btnFindNext.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
 | |
| 			this.btnFindNext.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
 | |
| 			this.btnFindNext.Location = new System.Drawing.Point(8, 149);
 | |
| 			this.btnFindNext.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.btnFindNext.Name = "btnFindNext";
 | |
| 			this.btnFindNext.Size = new System.Drawing.Size(56, 27);
 | |
| 			this.btnFindNext.TabIndex = 7;
 | |
| 			this.btnFindNext.Text = "Find Next";
 | |
| 			this.btnFindNext.Click += new System.EventHandler(this.btnFindNext_Click);
 | |
| 			// 
 | |
| 			// cmboReplaceText
 | |
| 			// 
 | |
| 			this.cmboReplaceText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
 | |
| 						| System.Windows.Forms.AnchorStyles.Right)));
 | |
| 			this.contextMenuBar1.SetContextMenuEx(this.cmboReplaceText, this.btnCmFndRpl);
 | |
| 			this.cmboReplaceText.DisplayMember = "Text";
 | |
| 			this.cmboReplaceText.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
 | |
| 			this.cmboReplaceText.FormattingEnabled = true;
 | |
| 			this.cmboReplaceText.Location = new System.Drawing.Point(83, 41);
 | |
| 			this.cmboReplaceText.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.cmboReplaceText.MaxDropDownItems = 10;
 | |
| 			this.cmboReplaceText.Name = "cmboReplaceText";
 | |
| 			this.cmboReplaceText.Size = new System.Drawing.Size(345, 21);
 | |
| 			this.cmboReplaceText.TabIndex = 2;
 | |
| 			this.cmboReplaceText.Visible = false;
 | |
| 			this.cmboReplaceText.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 | |
| 			this.cmboReplaceText.WatermarkText = "Enter replace text";
 | |
| 			this.cmboReplaceText.TextChanged += new System.EventHandler(this.cmboReplaceText_TextChanged);
 | |
| 			// 
 | |
| 			// lblRplTxt
 | |
| 			// 
 | |
| 			// 
 | |
| 			// 
 | |
| 			// 
 | |
| 			this.lblRplTxt.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
 | |
| 			this.lblRplTxt.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 | |
| 			this.lblRplTxt.Location = new System.Drawing.Point(4, 40);
 | |
| 			this.lblRplTxt.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.lblRplTxt.Name = "lblRplTxt";
 | |
| 			this.lblRplTxt.Size = new System.Drawing.Size(79, 23);
 | |
| 			this.lblRplTxt.TabIndex = 6;
 | |
| 			this.lblRplTxt.Text = "Replace Text:";
 | |
| 			this.lblRplTxt.Visible = false;
 | |
| 			// 
 | |
| 			// cmboFindText
 | |
| 			// 
 | |
| 			this.cmboFindText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
 | |
| 						| System.Windows.Forms.AnchorStyles.Right)));
 | |
| 			this.contextMenuBar1.SetContextMenuEx(this.cmboFindText, this.btnCmFndRpl);
 | |
| 			this.cmboFindText.DisplayMember = "Text";
 | |
| 			this.cmboFindText.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
 | |
| 			this.cmboFindText.FormattingEnabled = true;
 | |
| 			this.cmboFindText.Location = new System.Drawing.Point(83, 8);
 | |
| 			this.cmboFindText.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.cmboFindText.MaxDropDownItems = 10;
 | |
| 			this.cmboFindText.Name = "cmboFindText";
 | |
| 			this.cmboFindText.Size = new System.Drawing.Size(345, 21);
 | |
| 			this.cmboFindText.TabIndex = 1;
 | |
| 			this.cmboFindText.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 | |
| 			this.cmboFindText.WatermarkText = "Enter text to find";
 | |
| 			this.cmboFindText.Leave += new System.EventHandler(this.cmboFindText_Leave);
 | |
| 			this.cmboFindText.TextChanged += new System.EventHandler(this.cmboFindText_TextChanged);
 | |
| 			// 
 | |
| 			// labelX3
 | |
| 			// 
 | |
| 			// 
 | |
| 			// 
 | |
| 			// 
 | |
| 			this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
 | |
| 			this.labelX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 | |
| 			this.labelX3.Location = new System.Drawing.Point(22, 8);
 | |
| 			this.labelX3.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.labelX3.Name = "labelX3";
 | |
| 			this.labelX3.Size = new System.Drawing.Size(56, 21);
 | |
| 			this.labelX3.TabIndex = 8;
 | |
| 			this.labelX3.Text = "Find Text: ";
 | |
| 			// 
 | |
| 			// btnRplAll
 | |
| 			// 
 | |
| 			this.btnRplAll.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
 | |
| 			this.btnRplAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
 | |
| 			this.btnRplAll.Location = new System.Drawing.Point(261, 149);
 | |
| 			this.btnRplAll.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.btnRplAll.Name = "btnRplAll";
 | |
| 			this.btnRplAll.Size = new System.Drawing.Size(80, 28);
 | |
| 			this.btnRplAll.TabIndex = 10;
 | |
| 			this.btnRplAll.Text = "Replace ...";
 | |
| 			this.btnRplAll.Visible = false;
 | |
| 			this.btnRplAll.Click += new System.EventHandler(this.btnRplAll_Click);
 | |
| 			// 
 | |
| 			// panelEx1
 | |
| 			// 
 | |
| 			this.panelEx1.CanvasColor = System.Drawing.Color.Transparent;
 | |
| 			this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
 | |
| 			this.panelEx1.Controls.Add(this.contextMenuBar1);
 | |
| 			this.panelEx1.Controls.Add(this.cbxReverse);
 | |
| 			this.panelEx1.Controls.Add(this.cbxWholeWord);
 | |
| 			this.panelEx1.Controls.Add(this.cbxCaseSensitive);
 | |
| 			this.panelEx1.Controls.Add(this.cmbScope);
 | |
| 			this.panelEx1.Controls.Add(this.labelX1);
 | |
| 			this.panelEx1.Controls.Add(this.labelX3);
 | |
| 			this.panelEx1.Controls.Add(this.lblRplTxt);
 | |
| 			this.panelEx1.Controls.Add(this.cmboReplaceText);
 | |
| 			this.panelEx1.Controls.Add(this.cmboFindText);
 | |
| 			this.panelEx1.Dock = System.Windows.Forms.DockStyle.Top;
 | |
| 			this.panelEx1.Location = new System.Drawing.Point(0, 19);
 | |
| 			this.panelEx1.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.panelEx1.Name = "panelEx1";
 | |
| 			this.panelEx1.Size = new System.Drawing.Size(437, 124);
 | |
| 			this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
 | |
| 			this.panelEx1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(223)))), ((int)(((byte)(237)))), ((int)(((byte)(254)))));
 | |
| 			this.panelEx1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(142)))), ((int)(((byte)(179)))), ((int)(((byte)(231)))));
 | |
| 			this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
 | |
| 			this.panelEx1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
 | |
| 			this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
 | |
| 			this.panelEx1.Style.GradientAngle = 90;
 | |
| 			this.panelEx1.TabIndex = 15;
 | |
| 			// 
 | |
| 			// contextMenuBar1
 | |
| 			// 
 | |
| 			this.contextMenuBar1.AntiAlias = true;
 | |
| 			this.contextMenuBar1.DockSide = DevComponents.DotNetBar.eDockSide.Top;
 | |
| 			this.contextMenuBar1.Font = new System.Drawing.Font("Segoe UI", 9F);
 | |
| 			this.contextMenuBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
 | |
|             this.btnCmFndRpl});
 | |
| 			this.contextMenuBar1.Location = new System.Drawing.Point(115, 68);
 | |
| 			this.contextMenuBar1.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.contextMenuBar1.Name = "contextMenuBar1";
 | |
| 			this.contextMenuBar1.Size = new System.Drawing.Size(56, 25);
 | |
| 			this.contextMenuBar1.Stretch = true;
 | |
| 			this.contextMenuBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
 | |
| 			this.contextMenuBar1.TabIndex = 13;
 | |
| 			this.contextMenuBar1.TabStop = false;
 | |
| 			this.contextMenuBar1.Text = "contextMenuBar1";
 | |
| 			// 
 | |
| 			// btnCmFndRpl
 | |
| 			// 
 | |
| 			this.btnCmFndRpl.AutoExpandOnClick = true;
 | |
| 			this.btnCmFndRpl.Name = "btnCmFndRpl";
 | |
| 			this.btnCmFndRpl.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
 | |
|             this.btnCmEdit,
 | |
|             this.btnCmInsert});
 | |
| 			this.btnCmFndRpl.Text = "cmFndRpl";
 | |
| 			// 
 | |
| 			// btnCmEdit
 | |
| 			// 
 | |
| 			this.btnCmEdit.Name = "btnCmEdit";
 | |
| 			this.btnCmEdit.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
 | |
|             this.btnCmCut,
 | |
|             this.btnCmCopy,
 | |
|             this.btnCmPaste});
 | |
| 			this.btnCmEdit.Text = "Edit";
 | |
| 			// 
 | |
| 			// btnCmCut
 | |
| 			// 
 | |
| 			this.btnCmCut.Name = "btnCmCut";
 | |
| 			this.btnCmCut.Text = "Cut";
 | |
| 			this.btnCmCut.Click += new System.EventHandler(this.btnCmCut_Click);
 | |
| 			// 
 | |
| 			// btnCmCopy
 | |
| 			// 
 | |
| 			this.btnCmCopy.Name = "btnCmCopy";
 | |
| 			this.btnCmCopy.Text = "Copy";
 | |
| 			this.btnCmCopy.Click += new System.EventHandler(this.btnCmCopy_Click);
 | |
| 			// 
 | |
| 			// btnCmPaste
 | |
| 			// 
 | |
| 			this.btnCmPaste.Name = "btnCmPaste";
 | |
| 			this.btnCmPaste.Text = "Paste";
 | |
| 			this.btnCmPaste.Click += new System.EventHandler(this.btnCmPaste_Click);
 | |
| 			// 
 | |
| 			// btnCmInsert
 | |
| 			// 
 | |
| 			this.btnCmInsert.Name = "btnCmInsert";
 | |
| 			this.btnCmInsert.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
 | |
|             this.btnCmHardSp,
 | |
|             this.btnCmSymbol});
 | |
| 			this.btnCmInsert.Text = "Insert";
 | |
| 			// 
 | |
| 			// btnCmHardSp
 | |
| 			// 
 | |
| 			this.btnCmHardSp.Name = "btnCmHardSp";
 | |
| 			this.btnCmHardSp.Text = "Hard Space";
 | |
| 			this.btnCmHardSp.Click += new System.EventHandler(this.btnCmHardSp_Click);
 | |
| 			// 
 | |
| 			// btnCmSymbol
 | |
| 			// 
 | |
| 			this.btnCmSymbol.Name = "btnCmSymbol";
 | |
| 			this.btnCmSymbol.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
 | |
|             this.galSymbols});
 | |
| 			this.btnCmSymbol.Text = "Symbol";
 | |
| 			// 
 | |
| 			// galSymbols
 | |
| 			// 
 | |
| 			// 
 | |
| 			// 
 | |
| 			// 
 | |
| 			this.galSymbols.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
 | |
| 			this.galSymbols.EnableGalleryPopup = false;
 | |
| 			this.galSymbols.MinimumSize = new System.Drawing.Size(150, 200);
 | |
| 			this.galSymbols.Name = "galSymbols";
 | |
| 			this.galSymbols.Text = "galleryContainer1";
 | |
| 			// 
 | |
| 			// 
 | |
| 			// 
 | |
| 			this.galSymbols.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
 | |
| 			// 
 | |
| 			// cbxReverse
 | |
| 			// 
 | |
| 			// 
 | |
| 			// 
 | |
| 			// 
 | |
| 			this.cbxReverse.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
 | |
| 			this.cbxReverse.Location = new System.Drawing.Point(8, 103);
 | |
| 			this.cbxReverse.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.cbxReverse.Name = "cbxReverse";
 | |
| 			this.cbxReverse.Size = new System.Drawing.Size(103, 19);
 | |
| 			this.cbxReverse.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
 | |
| 			this.cbxReverse.TabIndex = 5;
 | |
| 			this.cbxReverse.Text = "Reverse Find";
 | |
| 			// 
 | |
| 			// cbxWholeWord
 | |
| 			// 
 | |
| 			// 
 | |
| 			// 
 | |
| 			// 
 | |
| 			this.cbxWholeWord.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
 | |
| 			this.cbxWholeWord.Location = new System.Drawing.Point(8, 84);
 | |
| 			this.cbxWholeWord.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.cbxWholeWord.Name = "cbxWholeWord";
 | |
| 			this.cbxWholeWord.Size = new System.Drawing.Size(94, 22);
 | |
| 			this.cbxWholeWord.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
 | |
| 			this.cbxWholeWord.TabIndex = 4;
 | |
| 			this.cbxWholeWord.Text = "Whole Word";
 | |
| 			// 
 | |
| 			// cbxCaseSensitive
 | |
| 			// 
 | |
| 			// 
 | |
| 			// 
 | |
| 			// 
 | |
| 			this.cbxCaseSensitive.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
 | |
| 			this.cbxCaseSensitive.Location = new System.Drawing.Point(8, 68);
 | |
| 			this.cbxCaseSensitive.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.cbxCaseSensitive.Name = "cbxCaseSensitive";
 | |
| 			this.cbxCaseSensitive.Size = new System.Drawing.Size(103, 19);
 | |
| 			this.cbxCaseSensitive.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
 | |
| 			this.cbxCaseSensitive.TabIndex = 3;
 | |
| 			this.cbxCaseSensitive.Text = "Case Sensitive";
 | |
| 			// 
 | |
| 			// cmbScope
 | |
| 			// 
 | |
| 			this.cmbScope.DisplayMember = "Text";
 | |
| 			this.cmbScope.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
 | |
| 			this.cmbScope.FormattingEnabled = true;
 | |
| 			this.cmbScope.ItemHeight = 16;
 | |
| 			this.cmbScope.Items.AddRange(new object[] {
 | |
|             this.comboItem1,
 | |
|             this.comboItem2,
 | |
|             this.comboItem3,
 | |
|             this.comboItem4});
 | |
| 			this.cmbScope.Location = new System.Drawing.Point(236, 84);
 | |
| 			this.cmbScope.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.cmbScope.Name = "cmbScope";
 | |
| 			this.cmbScope.Size = new System.Drawing.Size(187, 22);
 | |
| 			this.cmbScope.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
 | |
| 			this.cmbScope.TabIndex = 6;
 | |
| 			this.cmbScope.Visible = false;
 | |
| 			// 
 | |
| 			// comboItem1
 | |
| 			// 
 | |
| 			this.comboItem1.Text = "Current Section";
 | |
| 			// 
 | |
| 			// comboItem2
 | |
| 			// 
 | |
| 			this.comboItem2.Text = "Current Procedure";
 | |
| 			// 
 | |
| 			// comboItem3
 | |
| 			// 
 | |
| 			this.comboItem3.Text = "Current Tabs";
 | |
| 			// 
 | |
| 			// comboItem4
 | |
| 			// 
 | |
| 			this.comboItem4.Text = "Current Set";
 | |
| 			// 
 | |
| 			// labelX1
 | |
| 			// 
 | |
| 			// 
 | |
| 			// 
 | |
| 			// 
 | |
| 			this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
 | |
| 			this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 | |
| 			this.labelX1.Location = new System.Drawing.Point(190, 84);
 | |
| 			this.labelX1.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.labelX1.Name = "labelX1";
 | |
| 			this.labelX1.Size = new System.Drawing.Size(42, 19);
 | |
| 			this.labelX1.TabIndex = 12;
 | |
| 			this.labelX1.Text = "Scope:";
 | |
| 			this.labelX1.Visible = false;
 | |
| 			// 
 | |
| 			// btnBookMrkAll
 | |
| 			// 
 | |
| 			this.btnBookMrkAll.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
 | |
| 			this.btnBookMrkAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
 | |
| 			this.btnBookMrkAll.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
 | |
| 			this.btnBookMrkAll.Location = new System.Drawing.Point(100, 149);
 | |
| 			this.btnBookMrkAll.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.btnBookMrkAll.Name = "btnBookMrkAll";
 | |
| 			this.btnBookMrkAll.Size = new System.Drawing.Size(70, 27);
 | |
| 			this.btnBookMrkAll.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
 | |
| 			this.btnBookMrkAll.TabIndex = 8;
 | |
| 			this.btnBookMrkAll.Text = "Bookmark All";
 | |
| 			this.btnBookMrkAll.Click += new System.EventHandler(this.btnBookMrkAll_Click);
 | |
| 			// 
 | |
| 			// tabControl1
 | |
| 			// 
 | |
| 			this.tabControl1.BackColor = System.Drawing.Color.White;
 | |
| 			this.tabControl1.CanReorderTabs = true;
 | |
| 			this.tabControl1.ColorScheme.TabItemBackgroundColorBlend.AddRange(new DevComponents.DotNetBar.BackgroundColorBlend[] {
 | |
|             new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(230)))), ((int)(((byte)(249))))), 0F),
 | |
|             new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(199)))), ((int)(((byte)(220)))), ((int)(((byte)(248))))), 0.45F),
 | |
|             new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(179)))), ((int)(((byte)(208)))), ((int)(((byte)(245))))), 0.45F),
 | |
|             new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(229)))), ((int)(((byte)(247))))), 1F)});
 | |
| 			this.tabControl1.ColorScheme.TabItemHotBackgroundColorBlend.AddRange(new DevComponents.DotNetBar.BackgroundColorBlend[] {
 | |
|             new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(253)))), ((int)(((byte)(235))))), 0F),
 | |
|             new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(236)))), ((int)(((byte)(168))))), 0.45F),
 | |
|             new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(218)))), ((int)(((byte)(89))))), 0.45F),
 | |
|             new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(230)))), ((int)(((byte)(141))))), 1F)});
 | |
| 			this.tabControl1.ColorScheme.TabItemSelectedBackground2 = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
 | |
| 			this.tabControl1.ColorScheme.TabItemSelectedBackgroundColorBlend.AddRange(new DevComponents.DotNetBar.BackgroundColorBlend[] {
 | |
|             new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.White, 0F),
 | |
|             new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254))))), 0.45F),
 | |
|             new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254))))), 0.45F),
 | |
|             new DevComponents.DotNetBar.BackgroundColorBlend(System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254))))), 1F)});
 | |
| 			this.tabControl1.Controls.Add(this.tabControlPanel1);
 | |
| 			this.tabControl1.Controls.Add(this.tabControlPanel2);
 | |
| 			this.tabControl1.Dock = System.Windows.Forms.DockStyle.Top;
 | |
| 			this.tabControl1.Location = new System.Drawing.Point(0, 0);
 | |
| 			this.tabControl1.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.tabControl1.Name = "tabControl1";
 | |
| 			this.tabControl1.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 | |
| 			this.tabControl1.SelectedTabIndex = 0;
 | |
| 			this.tabControl1.Size = new System.Drawing.Size(437, 19);
 | |
| 			this.tabControl1.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Document;
 | |
| 			this.tabControl1.TabIndex = 14;
 | |
| 			this.tabControl1.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
 | |
| 			this.tabControl1.Tabs.Add(this.tabFind);
 | |
| 			this.tabControl1.Tabs.Add(this.tabReplace);
 | |
| 			this.tabControl1.Text = "tabControl1";
 | |
| 			// 
 | |
| 			// tabControlPanel1
 | |
| 			// 
 | |
| 			this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
| 			this.tabControlPanel1.Location = new System.Drawing.Point(0, 22);
 | |
| 			this.tabControlPanel1.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.tabControlPanel1.Name = "tabControlPanel1";
 | |
| 			this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
 | |
| 			this.tabControlPanel1.Size = new System.Drawing.Size(437, 0);
 | |
| 			this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
 | |
| 			this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
 | |
| 			this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
 | |
| 			this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
 | |
| 			this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
 | |
| 						| DevComponents.DotNetBar.eBorderSide.Bottom)));
 | |
| 			this.tabControlPanel1.Style.GradientAngle = 90;
 | |
| 			this.tabControlPanel1.TabIndex = 1;
 | |
| 			this.tabControlPanel1.TabItem = this.tabFind;
 | |
| 			// 
 | |
| 			// tabFind
 | |
| 			// 
 | |
| 			this.tabFind.AttachedControl = this.tabControlPanel1;
 | |
| 			this.tabFind.Name = "tabFind";
 | |
| 			this.tabFind.Text = "Find";
 | |
| 			this.tabFind.Click += new System.EventHandler(this.tabFind_Click);
 | |
| 			// 
 | |
| 			// tabControlPanel2
 | |
| 			// 
 | |
| 			this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
| 			this.tabControlPanel2.Location = new System.Drawing.Point(0, 22);
 | |
| 			this.tabControlPanel2.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.tabControlPanel2.Name = "tabControlPanel2";
 | |
| 			this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
 | |
| 			this.tabControlPanel2.Size = new System.Drawing.Size(437, 0);
 | |
| 			this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
 | |
| 			this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
 | |
| 			this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
 | |
| 			this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
 | |
| 			this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
 | |
| 						| DevComponents.DotNetBar.eBorderSide.Bottom)));
 | |
| 			this.tabControlPanel2.Style.GradientAngle = 90;
 | |
| 			this.tabControlPanel2.TabIndex = 2;
 | |
| 			this.tabControlPanel2.TabItem = this.tabReplace;
 | |
| 			// 
 | |
| 			// tabReplace
 | |
| 			// 
 | |
| 			this.tabReplace.AttachedControl = this.tabControlPanel2;
 | |
| 			this.tabReplace.Name = "tabReplace";
 | |
| 			this.tabReplace.Text = "Replace";
 | |
| 			this.tabReplace.Click += new System.EventHandler(this.tabReplace_Click);
 | |
| 			// 
 | |
| 			// FindReplace
 | |
| 			// 
 | |
| 			this.AcceptButton = this.btnFindNext;
 | |
| 			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
 | |
| 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
| 			this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
 | |
| 			this.CancelButton = this.btnFndRplDone;
 | |
| 			this.ClientSize = new System.Drawing.Size(437, 180);
 | |
| 			this.Controls.Add(this.panelEx1);
 | |
| 			this.Controls.Add(this.tabControl1);
 | |
| 			this.Controls.Add(this.btnBookMrkAll);
 | |
| 			this.Controls.Add(this.btnRplAll);
 | |
| 			this.Controls.Add(this.btnFindNext);
 | |
| 			this.Controls.Add(this.btnFndRplDone);
 | |
| 			this.Controls.Add(this.btnReplace);
 | |
| 			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
 | |
| 			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
 | |
| 			this.Margin = new System.Windows.Forms.Padding(2);
 | |
| 			this.Name = "FindReplace";
 | |
| 			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
 | |
| 			this.Text = "Find and Replace";
 | |
| 			this.TopMost = true;
 | |
| 			this.Activated += new System.EventHandler(this.FindReplace_Activated);
 | |
| 			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FindReplace_FormClosing);
 | |
| 			this.panelEx1.ResumeLayout(false);
 | |
| 			((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).EndInit();
 | |
| 			((System.ComponentModel.ISupportInitialize)(this.tabControl1)).EndInit();
 | |
| 			this.tabControl1.ResumeLayout(false);
 | |
| 			this.ResumeLayout(false);
 | |
| 
 | |
| 		}
 | |
| 
 | |
| 		#endregion
 | |
| 
 | |
| 		private DevComponents.DotNetBar.ButtonX btnReplace;
 | |
| 		private DevComponents.DotNetBar.ButtonX btnFndRplDone;
 | |
| 		private DevComponents.DotNetBar.ButtonX btnFindNext;
 | |
| 		private DevComponents.DotNetBar.Controls.ComboBoxEx cmboReplaceText;
 | |
| 		private DevComponents.DotNetBar.LabelX lblRplTxt;
 | |
| 		private DevComponents.DotNetBar.Controls.ComboBoxEx cmboFindText;
 | |
| 		private DevComponents.DotNetBar.LabelX labelX3;
 | |
| 		private DevComponents.DotNetBar.ButtonX btnRplAll;
 | |
| 		private DevComponents.DotNetBar.PanelEx panelEx1;
 | |
| 		private DevComponents.DotNetBar.Controls.ComboBoxEx cmbScope;
 | |
| 		private DevComponents.Editors.ComboItem comboItem1;
 | |
| 		private DevComponents.Editors.ComboItem comboItem2;
 | |
| 		private DevComponents.Editors.ComboItem comboItem3;
 | |
| 		private DevComponents.Editors.ComboItem comboItem4;
 | |
| 		private DevComponents.DotNetBar.LabelX labelX1;
 | |
| 		private DevComponents.DotNetBar.Controls.CheckBoxX cbxCaseSensitive;
 | |
| 		private DevComponents.DotNetBar.ButtonX btnBookMrkAll;
 | |
| 		private DevComponents.DotNetBar.Controls.CheckBoxX cbxWholeWord;
 | |
| 		private DevComponents.DotNetBar.Controls.CheckBoxX cbxReverse;
 | |
| 		private DevComponents.DotNetBar.TabControl tabControl1;
 | |
| 		private DevComponents.DotNetBar.TabControlPanel tabControlPanel1;
 | |
| 		private DevComponents.DotNetBar.TabItem tabFind;
 | |
| 		private DevComponents.DotNetBar.TabControlPanel tabControlPanel2;
 | |
| 		private DevComponents.DotNetBar.TabItem tabReplace;
 | |
| 		private DevComponents.DotNetBar.ContextMenuBar contextMenuBar1;
 | |
| 		private DevComponents.DotNetBar.ButtonItem btnCmFndRpl;
 | |
| 		private DevComponents.DotNetBar.ButtonItem btnCmEdit;
 | |
| 		private DevComponents.DotNetBar.ButtonItem btnCmInsert;
 | |
| 		private DevComponents.DotNetBar.ButtonItem btnCmCut;
 | |
| 		private DevComponents.DotNetBar.ButtonItem btnCmCopy;
 | |
| 		private DevComponents.DotNetBar.ButtonItem btnCmPaste;
 | |
| 		private DevComponents.DotNetBar.ButtonItem btnCmHardSp;
 | |
| 		private DevComponents.DotNetBar.ButtonItem btnCmSymbol;
 | |
| 		private DevComponents.DotNetBar.GalleryContainer galSymbols;
 | |
| 	}
 | |
| } |