If you create a form with barManager in a new AppDomain, accelerator keys don't work.
For example, open a form with something like that:To duplicate the bug, using my LauncherForm.cs, launch "Bar Controls (MdiMerging)".
Then press "Alt+F": it doesn't work.
I'll send you a sample.
[Modified at 10/23/2006 05:09 AM]
For example, open a form with something like that:
private void AppDomainBarMdiMergeParentForm()
{
BarMdiMergeParentForm f;
System.Guid guid = System.Guid.NewGuid();
AppDomain domain = AppDomain.CreateDomain(guid.ToString());
Type type = typeof(BarMdiMergeParentForm);
string assemblyName = type.Assembly.GetName().Name;
string typeName = type.FullName;
f = (BarMdiMergeParentForm) domain.CreateInstanceAndUnwrap(assemblyName, typeName);
Application.DoEvents();
f.Show();
}
Then press "Alt+F": it doesn't work.
I'll send you a sample.
[Modified at 10/23/2006 05:09 AM]