Files
EduNetworkBuilder/EduNetworkBuilder/RTFWindow.Designer.cs
2015-08-01 09:13:20 -06:00

79 lines
3.2 KiB
C#

namespace EduNetworkBuilder
{
partial class RTFWindow
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RTFWindow));
this.rtbContent = new System.Windows.Forms.RichTextBox();
this.btnOK = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// rtbContent
//
this.rtbContent.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.rtbContent.Location = new System.Drawing.Point(34, 13);
this.rtbContent.Name = "rtbContent";
this.rtbContent.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
this.rtbContent.Size = new System.Drawing.Size(358, 249);
this.rtbContent.TabIndex = 0;
this.rtbContent.Text = "";
//
// btnOK
//
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.Location = new System.Drawing.Point(317, 271);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(75, 23);
this.btnOK.TabIndex = 1;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// RTFWindow
//
this.AcceptButton = this.btnOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(427, 306);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.rtbContent);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "RTFWindow";
this.Text = "RTFWindow";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.RichTextBox rtbContent;
private System.Windows.Forms.Button btnOK;
}
}