mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
88 lines
3.4 KiB
C#
88 lines
3.4 KiB
C#
using System.ComponentModel;
|
|
|
|
namespace Netch.Forms
|
|
{
|
|
partial class LogForm
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private 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.richTextBox1 = new System.Windows.Forms.RichTextBox();
|
|
this.checkBox1 = new System.Windows.Forms.CheckBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// richTextBox1
|
|
//
|
|
this.richTextBox1.BackColor = System.Drawing.SystemColors.Control;
|
|
this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Top;
|
|
this.richTextBox1.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.richTextBox1.Location = new System.Drawing.Point(0, 0);
|
|
this.richTextBox1.Name = "richTextBox1";
|
|
this.richTextBox1.ReadOnly = true;
|
|
this.richTextBox1.Size = new System.Drawing.Size(454, 288);
|
|
this.richTextBox1.TabIndex = 0;
|
|
this.richTextBox1.Text = "";
|
|
this.richTextBox1.TextChanged += new System.EventHandler(this.richTextBox1_TextChanged);
|
|
//
|
|
// checkBox1
|
|
//
|
|
this.checkBox1.AutoSize = true;
|
|
this.checkBox1.Location = new System.Drawing.Point(12, 297);
|
|
this.checkBox1.Name = "checkBox1";
|
|
this.checkBox1.Size = new System.Drawing.Size(102, 16);
|
|
this.checkBox1.TabIndex = 1;
|
|
this.checkBox1.Text = "Scroll to End";
|
|
this.checkBox1.UseVisualStyleBackColor = true;
|
|
//
|
|
// LogForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(454, 318);
|
|
this.ControlBox = false;
|
|
this.Controls.Add(this.checkBox1);
|
|
this.Controls.Add(this.richTextBox1);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "LogForm";
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.Text = "LogForm";
|
|
this.Load += new System.EventHandler(this.Notifycation_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.CheckBox checkBox1;
|
|
public System.Windows.Forms.RichTextBox richTextBox1;
|
|
}
|
|
} |