179 lines
		
	
	
		
			7.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			179 lines
		
	
	
		
			7.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Volian.Base.Library
 | |
| {
 | |
| 	partial class frmRtfEdit
 | |
| 	{
 | |
| 		/// <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()
 | |
| 		{
 | |
| 			this.btnOK = new System.Windows.Forms.Button();
 | |
| 			this.btnCancel = new System.Windows.Forms.Button();
 | |
| 			this.rtfBox = new System.Windows.Forms.RichTextBox();
 | |
| 			this.btnBold = new DevComponents.DotNetBar.ButtonX();
 | |
| 			this.btnItalics = new DevComponents.DotNetBar.ButtonX();
 | |
| 			this.btnUnderline = new DevComponents.DotNetBar.ButtonX();
 | |
| 			this.btnSubscript = new DevComponents.DotNetBar.ButtonX();
 | |
| 			this.btnSuperscript = new DevComponents.DotNetBar.ButtonX();
 | |
| 			this.btnHardspace = new DevComponents.DotNetBar.ButtonX();
 | |
| 			this.SuspendLayout();
 | |
| 			// 
 | |
| 			// btnOK
 | |
| 			// 
 | |
| 			this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
 | |
| 			this.btnOK.Location = new System.Drawing.Point(38, 144);
 | |
| 			this.btnOK.Name = "btnOK";
 | |
| 			this.btnOK.Size = new System.Drawing.Size(75, 23);
 | |
| 			this.btnOK.TabIndex = 3;
 | |
| 			this.btnOK.Text = "OK";
 | |
| 			this.btnOK.UseVisualStyleBackColor = true;
 | |
| 			this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
 | |
| 			// 
 | |
| 			// btnCancel
 | |
| 			// 
 | |
| 			this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
 | |
| 			this.btnCancel.Location = new System.Drawing.Point(143, 144);
 | |
| 			this.btnCancel.Name = "btnCancel";
 | |
| 			this.btnCancel.Size = new System.Drawing.Size(75, 23);
 | |
| 			this.btnCancel.TabIndex = 4;
 | |
| 			this.btnCancel.Text = "Cancel";
 | |
| 			this.btnCancel.UseVisualStyleBackColor = true;
 | |
| 			this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
 | |
| 			// 
 | |
| 			// rtfBox
 | |
| 			// 
 | |
| 			this.rtfBox.Location = new System.Drawing.Point(38, 73);
 | |
| 			this.rtfBox.Name = "rtfBox";
 | |
| 			this.rtfBox.Size = new System.Drawing.Size(214, 50);
 | |
| 			this.rtfBox.TabIndex = 5;
 | |
| 			this.rtfBox.Text = "";
 | |
| 			this.rtfBox.SelectionChanged += new System.EventHandler(this.rtfBox_SelectionChanged);
 | |
| 			// 
 | |
| 			// btnBold
 | |
| 			// 
 | |
| 			this.btnBold.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
 | |
| 			this.btnBold.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
 | |
| 			this.btnBold.Location = new System.Drawing.Point(12, 12);
 | |
| 			this.btnBold.Name = "btnBold";
 | |
| 			this.btnBold.Size = new System.Drawing.Size(31, 24);
 | |
| 			this.btnBold.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
 | |
| 			this.btnBold.TabIndex = 6;
 | |
| 			this.btnBold.Text = "B";
 | |
| 			this.btnBold.Click += new System.EventHandler(this.btnBold_Click);
 | |
| 			// 
 | |
| 			// btnItalics
 | |
| 			// 
 | |
| 			this.btnItalics.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
 | |
| 			this.btnItalics.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
 | |
| 			this.btnItalics.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 | |
| 			this.btnItalics.Location = new System.Drawing.Point(43, 12);
 | |
| 			this.btnItalics.Name = "btnItalics";
 | |
| 			this.btnItalics.Size = new System.Drawing.Size(31, 24);
 | |
| 			this.btnItalics.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
 | |
| 			this.btnItalics.TabIndex = 7;
 | |
| 			this.btnItalics.Text = "I";
 | |
| 			this.btnItalics.Click += new System.EventHandler(this.btnItalics_Click);
 | |
| 			// 
 | |
| 			// btnUnderline
 | |
| 			// 
 | |
| 			this.btnUnderline.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
 | |
| 			this.btnUnderline.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
 | |
| 			this.btnUnderline.Location = new System.Drawing.Point(74, 12);
 | |
| 			this.btnUnderline.Name = "btnUnderline";
 | |
| 			this.btnUnderline.Size = new System.Drawing.Size(31, 24);
 | |
| 			this.btnUnderline.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
 | |
| 			this.btnUnderline.TabIndex = 8;
 | |
| 			this.btnUnderline.Text = "U";
 | |
| 			this.btnUnderline.Click += new System.EventHandler(this.btnUnderline_Click);
 | |
| 			// 
 | |
| 			// btnSubscript
 | |
| 			// 
 | |
| 			this.btnSubscript.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
 | |
| 			this.btnSubscript.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
 | |
| 			this.btnSubscript.Location = new System.Drawing.Point(12, 42);
 | |
| 			this.btnSubscript.Name = "btnSubscript";
 | |
| 			this.btnSubscript.Size = new System.Drawing.Size(75, 23);
 | |
| 			this.btnSubscript.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
 | |
| 			this.btnSubscript.TabIndex = 9;
 | |
| 			this.btnSubscript.Text = "Subscript";
 | |
| 			this.btnSubscript.Click += new System.EventHandler(this.btnSubscript_Click);
 | |
| 			// 
 | |
| 			// btnSuperscript
 | |
| 			// 
 | |
| 			this.btnSuperscript.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
 | |
| 			this.btnSuperscript.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
 | |
| 			this.btnSuperscript.Location = new System.Drawing.Point(90, 42);
 | |
| 			this.btnSuperscript.Name = "btnSuperscript";
 | |
| 			this.btnSuperscript.Size = new System.Drawing.Size(75, 23);
 | |
| 			this.btnSuperscript.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
 | |
| 			this.btnSuperscript.TabIndex = 10;
 | |
| 			this.btnSuperscript.Text = "Superscript";
 | |
| 			this.btnSuperscript.Click += new System.EventHandler(this.btnSuperscript_Click);
 | |
| 			// 
 | |
| 			// btnHardspace
 | |
| 			// 
 | |
| 			this.btnHardspace.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
 | |
| 			this.btnHardspace.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
 | |
| 			this.btnHardspace.Location = new System.Drawing.Point(150, 10);
 | |
| 			this.btnHardspace.Name = "btnHardspace";
 | |
| 			this.btnHardspace.Size = new System.Drawing.Size(37, 26);
 | |
| 			this.btnHardspace.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
 | |
| 			this.btnHardspace.TabIndex = 11;
 | |
| 			this.btnHardspace.Text = "HS";
 | |
| 			this.btnHardspace.Click += new System.EventHandler(this.btnHardspace_Click);
 | |
| 			// 
 | |
| 			// frmRtfEdit
 | |
| 			// 
 | |
| 			this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
 | |
| 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
| 			this.ClientSize = new System.Drawing.Size(282, 198);
 | |
| 			this.Controls.Add(this.btnHardspace);
 | |
| 			this.Controls.Add(this.btnSuperscript);
 | |
| 			this.Controls.Add(this.btnSubscript);
 | |
| 			this.Controls.Add(this.btnUnderline);
 | |
| 			this.Controls.Add(this.btnItalics);
 | |
| 			this.Controls.Add(this.btnBold);
 | |
| 			this.Controls.Add(this.rtfBox);
 | |
| 			this.Controls.Add(this.btnCancel);
 | |
| 			this.Controls.Add(this.btnOK);
 | |
| 			this.Name = "frmRtfEdit";
 | |
| 			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
 | |
| 			this.Text = "Rich Text Edit";
 | |
| 			this.ResumeLayout(false);
 | |
| 
 | |
| 		}
 | |
| 
 | |
| 		#endregion
 | |
| 
 | |
| 		private System.Windows.Forms.Button btnOK;
 | |
| 		private System.Windows.Forms.Button btnCancel;
 | |
| 		private System.Windows.Forms.RichTextBox rtfBox;
 | |
| 		private DevComponents.DotNetBar.ButtonX btnBold;
 | |
| 		private DevComponents.DotNetBar.ButtonX btnItalics;
 | |
| 		private DevComponents.DotNetBar.ButtonX btnUnderline;
 | |
| 		private DevComponents.DotNetBar.ButtonX btnSubscript;
 | |
| 		private DevComponents.DotNetBar.ButtonX btnSuperscript;
 | |
| 		private DevComponents.DotNetBar.ButtonX btnHardspace;
 | |
| 	}
 | |
| } |