Tagged Questions

13
votes
2answers
8k views

WPF ListView Very Slow Performance - Why? (ElementHost, or Other Reason?)

I have a Windows Forms app, that has a single ElementHost containing a WPF UserControl... in my WPF, I have a VERY simple ListView: <ListView Margin="4" ItemsSource="{Binding Notifications}"> ...
7
votes
4answers
2k views

How do I convert a WPF size to physical pixels?

What's the best way to convert a WPF (resolution-independent) width and height to physical screen pixels? I'm showing WPF content in a WinForms Form (via ElementHost) and trying to work out some ...
7
votes
3answers
3k views

WPF TextBox not accepting Input when in ElementHost in Window Forms

We are developing a UI Control in WPF to be consumed within an existing Windows Forms / MFC application engine (Rhino 3D). The application engine exposes the ability create a "Dockbar" which ...
6
votes
1answer
776 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 ...
4
votes
3answers
1k views

WPF ShowDialog and ElementHost

is it possible to display a Modal Window from a WPF User Control, that is a child of an ElementHost, and set the owner/parent of the Modal Window to the containing Form control? I'm guessing you ...
3
votes
1answer
169 views

Bubble mouse event from WPF to WinForms

I have WPF control hosted inside a WinForms control using ElementHost. The WinForms control has a context menu. I want to show the context menu when user right click on the WPF control. How can this ...
3
votes
1answer
536 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 ...
3
votes
1answer
1k views

Dynamic Application-level resources are not dynamic when hosted in ElementHost

I'm hosting a WPF UserControl in a WinForms container. Now, I want to be able to theme/skin the UserControl. To do this, I've got several resource dictionaries that define the "skins." When my app ...
2
votes
1answer
60 views

Hide wpf popup when click on a Winform control

I have an ElementHost object in a WinForm dialog. This elementhosts child is a Popup. I want to hide or close the Popup when the user clicks anywhere. I can do it when the click happened in the ...
2
votes
1answer
640 views

Text renders differently on WPF window and inside ElementHost

I use WPF interoperability to host WPF user control inside WinForms form. Everything works OK except ugly text rendering: <Label Content="Normal text" Name="labelNormal"/> <Label ...
2
votes
1answer
1k views

WPF - C#: This element is not currently associated with any context

I have a WPF UserControl, which I use in a WinForms Control within an ElementHostControl. Then I start a WPF Window, while the Windows Form is still open. If I then close the WPF Window, and try to ...
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
2answers
63 views

C#,WPF integrated user control

Got a winform in project A (Main project) and which hosts a wpf user control and is maintained under different project called B On click of a button on user control ,I wanted to query server which is ...
1
vote
1answer
134 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
0answers
16 views

XAML TreeView to WinForm Image not working correctly

i have a XAML User control wich contain a (complex) TreeView, inside an ElementHost exact setup : VSTO TaskPane / UserControl / ElementHost / WPFUserControl / Grid /TreeView / ... I want to show ...
0
votes
1answer
75 views

WPF control hosted in an ElementHost control changes colour

I'm creating a WPF 'Button' control and making it the child of my ElementHost control. The background of the button is set to Red. When I run my project, the button changes colour and it seems to ...
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
0answers
150 views

WPF ElementHost and WPF Controls

I'm using Visual Studio 2010. I have a WinForms app with an ElementHost control. I'd like to be able to open the Tooolbox and simply drag WPF controls onto the ElementHost. To begin with, the "WPF ...
0
votes
2answers
374 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
485 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
171 views

Focus border outside an ElementHost is not being displayed

I'm using an ElementHost to host a WPF custom control in a WinForms app. The control has a thick border which should be visible when the control has focus. The border is "outside" the control, i.e, ...
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
355 views

.Net 4 Binding To WPF Cotrol in ElementHost (MVVM)

I've got a WPF ElementHost in a Winforms app. The User Control has some text and a TreeView which should show a tree of available commands provided by the app. I'm new to WPF (this is a learning ...
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
86 views

Unable to find WPF User Controls in Visual Studio C# 2008; stuck with nonexistant Control instead

This is a rather unusual question but here's the issue: I have a WPF control created in Visual Studio C# 2008, map.xaml, created in the project Remote. I want to add this to a Windows Form, also in ...
0
votes
2answers
704 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 ...
0
votes
2answers
865 views

WPF Validation in an ElementHost control

I've got a WinForms form that contains an ElementHost control (which contains a WPF UserControl) and a Save button. In the WPF UserControl I've got a text box with some validation on it. Something ...
0
votes
1answer
919 views

Docking with ElementHost

I am attempting to add a WPF usercontrol to an existing WinForms project and get the WPF UserControl to dock and fill the entire space. There's a current framework that loads WinForms UserControls ...