public AddInMenuItem( AddInManager manager, AddIn addIn, uint appId ) { addInManager = manager; this.addIn = addIn; this.appId = appId; this.Text = addIn.DisplayName; }
public AddInMenuItem(AddInManager manager, AddIn addIn, uint appId) { addInManager = manager; this.addIn = addIn; this.appId = appId; this.Text = addIn.DisplayName; }
public MainForm() { addInManager = new AddInManager(); InitializeComponent(); this.Icon = Icon.FromHandle( Properties.Resources.world.GetHicon() ); SetStatus( "Loading Addins..." ); addInManager.LoadAddIns( Application.StartupPath ); if ( addInManager.GetAddIns().Length == 0 ) Util.MsgBox( this, "Warning: No AddIns loaded. Your installation may be corrupt." ); SetStatus( "None" ); }
public MainForm() { addInManager = new AddInManager(); InitializeComponent(); this.Icon = Icon.FromHandle(Properties.Resources.world.GetHicon()); SetStatus("Loading Addins..."); addInManager.LoadAddIns(Application.StartupPath); if (addInManager.GetAddIns().Length == 0) { Util.MsgBox(this, "Warning: No AddIns loaded. Your installation may be corrupt."); } SetStatus("None"); }