Files
wj32 7bd28e4357 moved branches, tags, trunk to 1.x branch
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2304 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-10-25 02:22:46 +00:00

74 lines
2.9 KiB
C#

namespace TestPlugin
{
partial class TestPluginSettingsControl
{
/// <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 Component 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.buttonTest = new System.Windows.Forms.Button();
this.textSomeText = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// buttonTest
//
this.buttonTest.Location = new System.Drawing.Point(3, 29);
this.buttonTest.Name = "buttonTest";
this.buttonTest.Size = new System.Drawing.Size(75, 23);
this.buttonTest.TabIndex = 0;
this.buttonTest.Text = "Test";
this.buttonTest.UseVisualStyleBackColor = true;
this.buttonTest.Click += new System.EventHandler(this.buttonTest_Click);
//
// textSomeText
//
this.textSomeText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textSomeText.Location = new System.Drawing.Point(3, 3);
this.textSomeText.Name = "textSomeText";
this.textSomeText.Size = new System.Drawing.Size(397, 20);
this.textSomeText.TabIndex = 1;
this.textSomeText.Text = "Enter text here and it will be saved";
//
// TestPluginSettingsControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.textSomeText);
this.Controls.Add(this.buttonTest);
this.Name = "TestPluginSettingsControl";
this.Size = new System.Drawing.Size(403, 238);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonTest;
private System.Windows.Forms.TextBox textSomeText;
}
}