Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.