Files
pgina/Plugins/Core/Sample/Configuration.Designer.cs
David Wolff 1b2ce53d09 Reorganize plugins into core/contrib.
- Separate directories for core/contrib plugins.
  - Installer installs to separate directories within Plugins
  - PluginLoader loads plugins from plugin directory and subdirs.
2012-12-13 23:18:46 -08:00

109 lines
4.3 KiB
C#

namespace pGina.Plugin.Sample
{
partial class Configuration
{
/// <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.chkShowDescription = new System.Windows.Forms.CheckBox();
this.lblDesc = new System.Windows.Forms.Label();
this.txtDescription = new System.Windows.Forms.TextBox();
this.btnOk = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// chkShowDescription
//
this.chkShowDescription.AutoSize = true;
this.chkShowDescription.Location = new System.Drawing.Point(12, 12);
this.chkShowDescription.Name = "chkShowDescription";
this.chkShowDescription.Size = new System.Drawing.Size(133, 17);
this.chkShowDescription.TabIndex = 0;
this.chkShowDescription.Text = "Show Description Text";
this.chkShowDescription.UseVisualStyleBackColor = true;
//
// lblDesc
//
this.lblDesc.AutoSize = true;
this.lblDesc.Location = new System.Drawing.Point(13, 36);
this.lblDesc.Name = "lblDesc";
this.lblDesc.Size = new System.Drawing.Size(87, 13);
this.lblDesc.TabIndex = 1;
this.lblDesc.Text = "Description Text:";
//
// txtDescription
//
this.txtDescription.Location = new System.Drawing.Point(16, 53);
this.txtDescription.Name = "txtDescription";
this.txtDescription.Size = new System.Drawing.Size(352, 20);
this.txtDescription.TabIndex = 2;
//
// btnOk
//
this.btnOk.Location = new System.Drawing.Point(212, 98);
this.btnOk.Name = "btnOk";
this.btnOk.Size = new System.Drawing.Size(75, 23);
this.btnOk.TabIndex = 3;
this.btnOk.Text = "Save";
this.btnOk.UseVisualStyleBackColor = true;
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(293, 98);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(75, 23);
this.btnCancel.TabIndex = 4;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// Configuration
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(380, 133);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOk);
this.Controls.Add(this.txtDescription);
this.Controls.Add(this.lblDesc);
this.Controls.Add(this.chkShowDescription);
this.Name = "Configuration";
this.Text = "Sample Plugin Configuration";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.CheckBox chkShowDescription;
private System.Windows.Forms.Label lblDesc;
private System.Windows.Forms.TextBox txtDescription;
private System.Windows.Forms.Button btnOk;
private System.Windows.Forms.Button btnCancel;
}
}