Click here to Skip to main content
Click here to Skip to main content
Articles » Languages » C# » General » Downloads
 

Plugin Architecture using C#

By , 3 Aug 2003
 
plugindemo.zip
Dynamic.dll
Dynamic2.dll
Dynamic2.exe
PlugIn.dll
PluginWindowTest.exe
plugins.zip
Dynamic
App.ico
bin
Debug
Dynamic.csproj.user
obj
Debug
temp
TempPE
Dynamic2
App.ico
bin
Debug
Dynamic2.csproj.user
obj
Debug
temp
TempPE
DynamicWnd
App.ico
bin
Debug
DynamicWnd.csproj.user
obj
Debug
temp
TempPE
PlugIn
bin
Debug
obj
Debug
temp
TempPE
PlugIn.csproj.user
PlugInTest
App.ico
bin
Debug
obj
Debug
temp
TempPE
PlugInTest.csproj.user
PluginWindowTest
App.ico
bin
Debug
obj
Debug
temp
TempPE
PluginWindowTest.csproj.user
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

namespace DynamicWnd
{
	/// <summary>
	/// Summary description for Form1.
	/// </summary>
	public class Form1 : System.Windows.Forms.Form
	{
		private System.Windows.Forms.MainMenu mainMenu1;
		private System.Windows.Forms.MenuItem menuItem1;
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.Container components = null;

		public Form1()
		{
			//
			// 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()
		{
			this.mainMenu1 = new System.Windows.Forms.MainMenu();
			this.menuItem1 = new System.Windows.Forms.MenuItem();
			// 
			// mainMenu1
			// 
			this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
																					  this.menuItem1});
			// 
			// menuItem1
			// 
			this.menuItem1.Index = 0;
			this.menuItem1.Text = "File";
			this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click);
			// 
			// Form1
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(544, 373);
			this.Menu = this.mainMenu1;
			this.Name = "Form1";
			this.Text = "Form1";

		}
		#endregion

		/// <summary>
		/// The main entry point for the application.
		/// </summary>
		[STAThread]
		static void Main() 
		{
			Application.Run(new Form1());
		}

		private void menuItem1_Click(object sender, System.EventArgs e)
		{
			MessageBox.Show("menuItem1_Click");
		}
	}
}

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.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

shokisingh
Team Leader
India India
Member
No Biography provided

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 4 Aug 2003
Article Copyright 2003 by shokisingh
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid