HI!
I'm trying to host a delphi 7 vcl application in a .Net wpf application.
Everything works great except modal dialogs do not behave like modal dialogs, the parent window isn't disabled.
This is my code so far:
class MySimpleDelphiHost : HwndHost
{
private Process _appProc;
public IntPtr hwndHost;
protected override HandleRef BuildWindowCore(HandleRef hwndParent)
{
_appProc = new Process();
_appProc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
_appProc.StartInfo.FileName = @"MySimpleDelphiApplication.exe";
_appProc.Start();
Thread.Sleep(1000);
hwndHost = Win32API.FindWindow("TMainForm", null);
int oldStyle = Win32API.GetWindowLong(hwndHost, Win32API.GWL_STYLE);
Win32API.SetWindowLong(hwndHost, Win32API.GWL_STYLE, (oldStyle | Win32API.WS_CHILD) & ~Win32API.WS_BORDER);
Win32API.SetParent(hwndHost, hwndParent.Handle);
Win32API.ShowWindowAsync(hwndHost, Win32API.SW_SHOWMAXIMIZED);
return new HandleRef(this, hwndHost);
}
protected override void DestroyWindowCore(HandleRef hwnd)
{
_appProc.Kill();
}
}
If I host a none delphi application this works just fine. Any ideas?
I created a demo http://www.easy-share.com/1913154119/SimpleDelphiAppHosting.zip . Sorry for the hosting site.