86 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Volian.Controls.Library
 | |
| {
 | |
| 	partial class frmViewTextFile
 | |
| 	{
 | |
| 		/// <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.rtbViewFile = new System.Windows.Forms.RichTextBox();
 | |
| 			this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
 | |
| 			this.SuspendLayout();
 | |
| 			// 
 | |
| 			// rtbViewFile
 | |
| 			// 
 | |
| 			this.rtbViewFile.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.rtbViewFile.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 | |
| 			this.rtbViewFile.Location = new System.Drawing.Point(0, 0);
 | |
| 			this.rtbViewFile.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
 | |
| 			this.rtbViewFile.Name = "rtbViewFile";
 | |
| 			this.rtbViewFile.ReadOnly = true;
 | |
| 			this.rtbViewFile.Size = new System.Drawing.Size(476, 552);
 | |
| 			this.rtbViewFile.TabIndex = 0;
 | |
| 			this.rtbViewFile.Text = "";
 | |
| 			// 
 | |
| 			// buttonX1
 | |
| 			// 
 | |
| 			this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
 | |
| 			this.buttonX1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
 | |
| 			this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
 | |
| 			this.buttonX1.DialogResult = System.Windows.Forms.DialogResult.OK;
 | |
| 			this.buttonX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 | |
| 			this.buttonX1.Location = new System.Drawing.Point(419, 560);
 | |
| 			this.buttonX1.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
 | |
| 			this.buttonX1.Name = "buttonX1";
 | |
| 			this.buttonX1.Size = new System.Drawing.Size(56, 19);
 | |
| 			this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
 | |
| 			this.buttonX1.TabIndex = 1;
 | |
| 			this.buttonX1.Text = "OK";
 | |
| 			// 
 | |
| 			// frmViewTextFile
 | |
| 			// 
 | |
| 			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
 | |
| 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
| 			this.ClientSize = new System.Drawing.Size(476, 580);
 | |
| 			this.Controls.Add(this.rtbViewFile);
 | |
| 			this.Controls.Add(this.buttonX1);
 | |
| 			this.DoubleBuffered = true;
 | |
| 			this.Margin = new System.Windows.Forms.Padding(2, 2, 2, 2);
 | |
| 			this.Name = "frmViewTextFile";
 | |
| 			this.ShowIcon = false;
 | |
| 			this.Text = "frmViewTextFile";
 | |
| 			this.Load += new System.EventHandler(this.frmViewTextFile_Load);
 | |
| 			this.ResumeLayout(false);
 | |
| 
 | |
| 		}
 | |
| 
 | |
| 		#endregion
 | |
| 
 | |
| 		private System.Windows.Forms.RichTextBox rtbViewFile;
 | |
| 		private DevComponents.DotNetBar.ButtonX buttonX1;
 | |
| 	}
 | |
| } |