Click here to Skip to main content
15,885,366 members
Articles / Desktop Programming / Windows Forms

PluginManager - A C# utility to load plug-in based components

Rate me:
Please Sign up or sign in to vote.
4.72/5 (11 votes)
3 Dec 2008CC (ASA 2.5)9 min read 64.9K   2.7K   150  
PluginManager is a simple desktop utility that loads and runs simple control based plug-ins.
namespace Citrus.Forms.StickyNote
{
    partial class StickyNote
    {
        /// <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.components = new System.ComponentModel.Container();
            this.noteEntry = new System.Windows.Forms.TextBox();
            this.noteSaver = new System.Windows.Forms.Timer(this.components);
            this.SuspendLayout();
            // 
            // noteEntry
            // 
            this.noteEntry.AcceptsReturn = true;
            this.noteEntry.AcceptsTab = true;
            this.noteEntry.AllowDrop = true;
            this.noteEntry.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                        | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.noteEntry.Location = new System.Drawing.Point(4, 4);
            this.noteEntry.Multiline = true;
            this.noteEntry.Name = "noteEntry";
            this.noteEntry.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.noteEntry.Size = new System.Drawing.Size(474, 493);
            this.noteEntry.TabIndex = 0;
            // 
            // noteSaver
            // 
            this.noteSaver.Enabled = true;
            this.noteSaver.Interval = 10000;
            this.noteSaver.Tick += new System.EventHandler(this.noteSaver_Tick);
            // 
            // StickyNote
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.noteEntry);
            this.Name = "StickyNote";
            this.Size = new System.Drawing.Size(481, 500);
            this.Load += new System.EventHandler(this.StickyNote_Load);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.TextBox noteEntry;
        private System.Windows.Forms.Timer noteSaver;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service 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 Creative Commons Attribution-ShareAlike 2.5 License


Written By
Web Developer
United Kingdom United Kingdom
I work as a Technology Lead for an IT services company based in India.

Passions include programming methodologies, compiler theory, cartooning and calligraphy.

Comments and Discussions