|
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 » |
made changes -
08/Nov/09 08:22 AM
|
Status
|
Open
[ 1
]
|
In Progress
[ 3
]
|
made changes -
08/Nov/09 08:32 AM
dmiles@users.sourceforge.net - 2009-11-08 08:32:35.0
made changes -
08/Nov/09 05:39 PM
|
Status
|
In Progress
[ 3
]
|
Closed
[ 6
]
|
|
Fix Version/s
|
|
1.10
[ 10133
]
|
|
Resolution
|
|
Fixed
[ 1
]
|
made changes -
04/Aug/10 02:42 PM
|
Workflow
|
jira
[ 11400
]
|
Radegast
[ 11824
]
|
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?