85 lines
2.4 KiB
C#
85 lines
2.4 KiB
C#
namespace RichTextBoxTesting
|
|
{
|
|
partial class Form1
|
|
{
|
|
/// <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.RTB = new System.Windows.Forms.RichTextBox();
|
|
this.TB = new System.Windows.Forms.TextBox();
|
|
this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// RTB
|
|
//
|
|
this.RTB.Location = new System.Drawing.Point(62, 36);
|
|
this.RTB.Name = "RTB";
|
|
this.RTB.Size = new System.Drawing.Size(521, 152);
|
|
this.RTB.TabIndex = 0;
|
|
this.RTB.Text = "";
|
|
this.RTB.TextChanged += new System.EventHandler(this.RTB_TextChanged);
|
|
//
|
|
// TB
|
|
//
|
|
this.TB.Location = new System.Drawing.Point(68, 235);
|
|
this.TB.Multiline = true;
|
|
this.TB.Name = "TB";
|
|
this.TB.Size = new System.Drawing.Size(514, 154);
|
|
this.TB.TabIndex = 1;
|
|
this.TB.TextChanged += new System.EventHandler(this.TB_TextChanged);
|
|
//
|
|
// checkedListBox1
|
|
//
|
|
this.checkedListBox1.FormattingEnabled = true;
|
|
this.checkedListBox1.Location = new System.Drawing.Point(206, 143);
|
|
this.checkedListBox1.Name = "checkedListBox1";
|
|
this.checkedListBox1.Size = new System.Drawing.Size(8, 4);
|
|
this.checkedListBox1.TabIndex = 2;
|
|
//
|
|
// Form1
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(903, 517);
|
|
this.Controls.Add(this.checkedListBox1);
|
|
this.Controls.Add(this.TB);
|
|
this.Controls.Add(this.RTB);
|
|
this.Name = "Form1";
|
|
this.Text = "Form1";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.RichTextBox RTB;
|
|
private System.Windows.Forms.TextBox TB;
|
|
private System.Windows.Forms.CheckedListBox checkedListBox1;
|
|
}
|
|
}
|
|
|