When opening a new form on a fresh thread, it always appears in the center of Monitor 1 reagrdless of where the MDI is.
Called with :
pleaseWaitA = new PleaseWaitASync()
Snippet from
PleaseWaitASync that defines the Form Properties :
_t = new System.Threading.Thread(() =>
{
var f = new fPleaseWait();
f.Text = title;
f.StartPosition = Firefly.Box.UI.WindowStartPosition.CenterMDI;
Any way for it to find the correct MDI Location, or to launch it a different way (it has no Methods so cant use Create<>) ?