Tagged Questions

6
votes
1answer
774 views

Any disadvantage to using an ElementHost to host a WPF UserControl in a Winform application?

Curious if there are any disadvantages to using an ElementHost to host a WPF UserControl in a Winform application? I ask because in general I feel that it takes to much time for me create a new WPF ...
5
votes
2answers
3k views

Loading/Using Resource Dictionaries from a WinForms hosted WPF control

I have a Windows Forms application that needs to host a WPF control at runtime. I have the basic hosting and interaction complete (using an ElementHost control) and everything works fine until I try ...
3
votes
1answer
530 views

Auto size ElementHost to its content

I have a small WPF control that has a TextBlock with TextWrapping set to Wrap. I am trying to host this in an existing WinForms application. I have the ElementHost docked to the top of the form, and I ...
3
votes
2answers
1k views

WPF control not displaying in ElementHost in WinForms app

I have a problem with a WPF control that I'm trying to host in an ElementHost in a WinForms app. The control is a lookless custom control that I originally developed in a separate test project, which ...
1
vote
2answers
82 views

WPF Animated ProgressBar in WinForms application

I have a WinForms application, and wanted to add some nice WPF controls, one of them being an 'indeterminate' progress bar.. which just animates nicely until I tell it to stop. I have done this, and ...
1
vote
1answer
132 views

My WPF UserControl doesn't receive input when hosted in a WinForm Form

I've added a WPF user control to a WinForms Form but I'm not able to receive events on my WPF control. I've tried to subscribe the MouseEnter event but the event handler method is never called. I'm ...
1
vote
1answer
184 views

WinForms ElementHost slows down with repeated use

I have a scenario where using WPF as part of a modeless dialog drastically out-performs the alternatives. However, what I'm seeing is that each time I bring up the dialog, it gets a little slower, ...
1
vote
1answer
428 views

Binding to a WPF hosted control's DependencyProperty in WinForms

I have a WinForms app with some elements that are hosted WPF user controls (using ElementHost). I want to be able to bind my WinForm's control property (Button.Enabled) to a custom DependencyProperty ...
1
vote
1answer
546 views

How to use a windows forms embedded resource as the Source for a WPF mediaelement?

I am hosting a MediaElement in a WinForms application, which I would like to play both images and video through. My images and video are set as embedded resources to the application. The ...
0
votes
2answers
80 views

Dynamically adding ElementHost'd WPF UserControl to WinForms results in Black

I have a WPF user control inside an ElementHost that is inside a WinForms control to wrap it. I'm dynamically adding it to a tab control tab. But when I do this, my WPF control is black. How do I ...
0
votes
2answers
186 views

Converting WPF application to UserControl for use in WinForms application via ElementHost

I'm trying to convert this WPF application to WPF UserControl so I could use it in WinForms application via ElementHost. I'm new to WPF and have never even touched it prior to this attempt so I might ...
0
votes
2answers
373 views

ElementHost Layout Problems

I have a bunch of ElementHosts that I'm loading onto my form. When this happens, the element hosts all appear with a black background. If I bring another control to front, then close the other ...
0
votes
1answer
139 views

Windows Forms Element Host Focus

I have an ElementHost in a Windows Forms UserControl that is sized to the full width/height of the Windows Forms UserControl. The UserControl is on a Form...but I can't move the UserControl or select ...
0
votes
2answers
481 views

Keyboard Focus navigation problem with ElementHost hosted WPF view with WindowsFormsHost hosted controls

I have a keyboard focus problem with Windows Forms application that hosts WPF UserControls. When I press tab, the navigation works well if there are only WPF controls in the UserControl. If I add a ...
0
votes
0answers
96 views

Can't get focus back to Winforms control from Wpf control in ElementHost

There is a control - subclass of Windows.Forms.UserControl. It contains several winforms controls and one ElementHost with WPF (for example, button) inside. I run mu application - click on control ...
0
votes
1answer
131 views

Expose properties of a WPF control to the WinForms host

Ia have seen several similar posts (so if there is one, please guide me to it), but I haven't found any clear answers. I've got a WPF control hosted inside a Windows Forms form via ElementHost. My ...
0
votes
1answer
233 views

add a custom event on a wpf button hosted in a element host in win forms

I have a Winform application, I add a WPF UserControl1( that contain a button) in the win forms application Well I'd like to add a custom event on that button, so that, I can redifine the click event, ...
0
votes
1answer
596 views

WPF User Control is causing Out of Memory Exception

Looking for a free spell checking solution, I thought I was so smart in doing this but I guess not. I have created a windows form based application and I want the form to add a user specified amount ...
0
votes
2answers
818 views

Black background before loading a wpf controll when using ElementHost

I'm using WPF in WinForms with ElementHost. When the form loads, there is a flash of black background where the ElementHost is about to load. This looks kind of bad. Any suggestions on how to get rid ...
0
votes
2answers
703 views

Problems with Prism hosted in a WinForm ElementHost

I am having problems with hosting a WPF prism app in an ElementHost control and am desparate for help. The PRISM app runs fine in silverlight and in a standalone WPF. The main Shell seems to setup ...