Description:
…
Answer:
To accomplish this, create your own window controller, derived from the DevExpress.ExpressApp.LogonController. Then add a new action and specify its Category property to "PopupActions":
C#namespace Solution3.Module.Win {
public partial class MyLogonController : LogonController {
private void MyCustomAction_Execute(object sender, SimpleActionExecuteEventArgs e) {
...
}
}
}
Then override the application's CreateLogonController method to provide this controller instead the standard one:
C#protected override DevExpress.ExpressApp.LogonController CreateLogonController() {
MyLogonController controller = this.CreateController<MyLogonController>();
return controller;
}
See Also:
Q99257
Activate a Controller for the Logon Form
Thanks,
Dan