plugintest_demo.zip
PIManager.dll
PluginTest.exe
Test1
Test1.dll
TestInterface.dll
plugintest_src.zip
PIManager
PluginTest
TestInterface
|
/*
* Creato da SharpDevelop.
* Utente: lucabonotto
* Data: 22/05/2008
* Ora: 10.59
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
namespace PluginTest
{
partial class MainForm
{
/// <summary>
/// Designer variable used to keep track of non-visual components.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Disposes resources used by the form.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing) {
if (components != null) {
components.Dispose();
}
}
base.Dispose(disposing);
}
/// <summary>
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The Forms designer might
/// not be able to load this method if it was changed manually.
/// </summary>
private void InitializeComponent()
{
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuLoadPlugin = new System.Windows.Forms.ToolStripMenuItem();
this.menuExit = new System.Windows.Forms.ToolStripMenuItem();
this.panelCtrl = new System.Windows.Forms.Panel();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.fileToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(510, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// fileToolStripMenuItem
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.menuLoadPlugin,
this.menuExit});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
this.fileToolStripMenuItem.Text = "&File";
//
// menuLoadPlugin
//
this.menuLoadPlugin.Name = "menuLoadPlugin";
this.menuLoadPlugin.Size = new System.Drawing.Size(169, 22);
this.menuLoadPlugin.Text = "&Load plugin Test1";
this.menuLoadPlugin.Click += new System.EventHandler(this.menuLoadPlugin_Click);
//
// menuExit
//
this.menuExit.Name = "menuExit";
this.menuExit.Size = new System.Drawing.Size(169, 22);
this.menuExit.Text = "&Exit";
this.menuExit.Click += new System.EventHandler(this.menuExit_Click);
//
// panelCtrl
//
this.panelCtrl.Dock = System.Windows.Forms.DockStyle.Fill;
this.panelCtrl.Location = new System.Drawing.Point(0, 24);
this.panelCtrl.Name = "panelCtrl";
this.panelCtrl.Size = new System.Drawing.Size(510, 314);
this.panelCtrl.TabIndex = 1;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(510, 338);
this.Controls.Add(this.panelCtrl);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "MainForm";
this.Text = "PluginTest";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.Panel panelCtrl;
private System.Windows.Forms.ToolStripMenuItem menuExit;
private System.Windows.Forms.ToolStripMenuItem menuLoadPlugin;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.MenuStrip menuStrip1;
}
}
|
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please
let us know and we'll add colourisation support for it.