66 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Check.Main.UI
 | |
| {
 | |
|     partial class FrmLog
 | |
|     {
 | |
|         /// <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.txtLog = new Sunny.UI.UIRichTextBox();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // txtLog
 | |
|             // 
 | |
|             this.txtLog.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.txtLog.FillColor = System.Drawing.Color.White;
 | |
|             this.txtLog.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
 | |
|             this.txtLog.Location = new System.Drawing.Point(0, 0);
 | |
|             this.txtLog.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
 | |
|             this.txtLog.MinimumSize = new System.Drawing.Size(1, 1);
 | |
|             this.txtLog.Name = "txtLog";
 | |
|             this.txtLog.Padding = new System.Windows.Forms.Padding(2);
 | |
|             this.txtLog.ReadOnly = true;
 | |
|             this.txtLog.ShowText = false;
 | |
|             this.txtLog.Size = new System.Drawing.Size(399, 299);
 | |
|             this.txtLog.TabIndex = 0;
 | |
|             this.txtLog.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
 | |
|             // 
 | |
|             // FrmLog
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(399, 299);
 | |
|             this.Controls.Add(this.txtLog);
 | |
|             this.Name = "FrmLog";
 | |
|             this.Text = "FrmLog";
 | |
|             this.ResumeLayout(false);
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         private Sunny.UI.UIRichTextBox txtLog;
 | |
|     }
 | |
| } |