vbAccelerator - Contents of code file: MDIClientPainter\frmChild.csusing System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace MDIClientPainter
{
/// <summary>
/// Summary description for frmChild.
/// </summary>
public class frmChild : System.Windows.Forms.Form
{
private System.Windows.Forms.TextBox txtDocument;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
public frmChild()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(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.Resources.ResourceManager resources = new
System.Resources.ResourceManager(typeof(frmChild));
this.txtDocument = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// txtDocument
//
this.txtDocument.AcceptsReturn = true;
this.txtDocument.AcceptsTab = true;
this.txtDocument.Dock = System.Windows.Forms.DockStyle.Fill;
this.txtDocument.Multiline = true;
this.txtDocument.Name = "txtDocument";
this.txtDocument.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.txtDocument.Size = new System.Drawing.Size(292, 266);
this.txtDocument.TabIndex = 0;
this.txtDocument.Text = "";
//
// frmChild
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.txtDocument});
this.Font = new System.Drawing.Font("Tahoma", 8.25F,
System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point,
((System.Byte)(0)));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "frmChild";
this.Text = "New Document";
this.ResumeLayout(false);
}
#endregion
}
}
|
|