
|
If you were logged in you would be able to see more operations.
|
|
|
|
My plugin needs an open/close event to detect when the smaller windows (profile, group, notecard, etc) open and close. On getting the Form reference, I may want to add menu items as well, but I think I can find that if the menubars are in a standard place.
|
|
Description
|
My plugin needs an open/close event to detect when the smaller windows (profile, group, notecard, etc) open and close. On getting the Form reference, I may want to add menu items as well, but I think I can find that if the menubars are in a standard place. |
Show » |
|
make these subclasses
Add event to RadegastInstnace
public event Action<RadegastForm> RadegastFormCreated;Adding To the base constructor of RadegastForm
From there. it be up to the plugin startup
void Plug_RadegastFormCreated(RadegastForm radForm) { radForm.Shown += radForm.Disposing += .. etc }What does everyone think?