Plugin Archtiecture

  • Thread starter Thread starter kumar
  • Start date Start date
K

kumar

hi,


I am Working in a plugin Architecture for Windows application and
using which i create a menu inside a parent form.for MDI Child Windows
in which i need to create a MENU SEPERATOR to differentiate between two
different groups of menu items.




Share your ideas on it................
 
What is the question?

1) all your plugins should implement a common interface
2) menu separators are achieved by setting the menu item's text to '-'
{dash}

I hope it helps

If it's not the answer you expected, please provide a question... ;)

ThunderMusic
 
you have a architecture called plug and play through which you can
dynamically add dlls and start your work accordingly you can add new
module to the application.

now my problem is through plugin manager i am adding a new MDI Forms so
at what point of time i can specify that - it.

my plugin will be like this,

((IpiApplication)
intfApplication).GetRegistrationManager().RegisterService( new
CrsqiServicesRegistrationInfo(typeof(interfacename),
typeof(Classname),"caption", false, false, 0, 0, 0, null));

this way i will register one MDI Form to it ..

then is there anyway i can give a seperator into it..
 
Back
Top