I need to show the response from c++ dll in a winform usercontrol being hosted in wpf usercontrol through using WindowsFormsHost element.
The following is the approach in my MainUsercontrol.xaml
<WindowsFormsHost Height="320" Width="390" HorizontalAlignment="Center" VerticalAlignment="Center">
<winform:WinUserControl x:Name="testwindow" Height="320" Width="390"></winform:WinUserControl>
</WindowsFormsHost>
(note: I have included the namespace for "winform" tag in my xaml page.)
below is the code in MainUsercontrol.xaml.cs page
WinUserControl _userctrl = new WinUserControl();
the next is the code for WinUserControl.cs winform usercontrol
public IntPtr WinHandle
{
get { return this.Handle; }
}
the following is the code for my interop call to c++ dll to get the response
int response = InvokeCall.getData(WinUserControl.WinHandle);
Actually, I need to show the webcampreview in my wpf application that is being handled through c++ dll call back methods as shown above. I could get the response successfully from my c++ dll. however, Could not find the output of my webcam in "WinUserControl".
I have tried a basic workaround to check if my approach is correct for getting data in the winform usercontrol through "WindowsFormsHost" element where in I have used some label and a text box inside my winform usercontrol and that has worked out well.
But here, am unable to show a label with some text inside the winform usercontrol atleast.
I don't know if there is anything missing which I need to include in my code.
Would someone please let me know the way out to resolve my issue. Thanks in advance.