`Element Host` is a `Windows Forms control` that can be used to host a Windows Presentation Foundation (`WPF`) element.

learn more… | top users | synonyms

0
votes
0answers
10 views

Redirect Key input from a Control to a Form

I have a Windows Form - MyForm. In MyForm I have a WPF Control (MyWpfControl). That control, when focused (selected) inhibits the keys of MyForm. That means, I capture KeyDown only in the Wpf ...
0
votes
0answers
15 views

WPF UserControl and Winforms KeyPress

I have a WPF UserControl. That control is embedded in a WinForm via a ElementHost, that is located in a TabControl. Normally, in a TabControl when I press Ctrl+Tab it changes the tab. But I observed ...
0
votes
0answers
56 views

ListViewItem background not refreshing until parent TabControl switches tabs

I have an older WinForms application (.NET 3.5) that I'm adding some new functionality to. I'm replacing a Form with a TabControl in it where each tab has a ListView within it. The setup will be the ...
0
votes
1answer
58 views

Binding wpf element host to Winform

I have a wpf element host sitting in winfrom. I would like to bind the property of the element to the property of the winfrom. In search I found the opposite solution, binding between winfrom to wpf ...
0
votes
1answer
50 views

Change element from element host

I have a DataGrid with a few lines: <DataGrid ItemsSource="{Binding mylist}" AutoGenerateColumns="False"> <DataGrid.Columns> <DataGridTextColumn Width="*" Header="x" ...
0
votes
1answer
99 views

MouseEnter event in Winform ElementHost

I have a Winform with an elementHost in it to contain a WPF UserControl. What I need, is to do something when the mouse enters the elementHost, not the child. I was trying to use MouseEnter event in ...
2
votes
1answer
100 views

Black backcolor in Controls when it was set to transparent

I´m having an issue with WPF elementHost backcolors. I have a winform that loads in a panel an UserControl(Winform). In that user control I have two panels, inside of each of them, there is an ...
0
votes
1answer
310 views

WPF Scrollviewer DesiredSize does not increase when ScrollBar gets Visible

I have a WPF UserControl (inside an ElementHost) with a ScrollViewer that contains an ItemsControl . The HorizontalScrollbarVisibility is set to Auto, so if no scrolling is necessary, the ...
5
votes
2answers
373 views

ElementHost + FlowDocument = GC not working, memory keeps increasing

[Updated, see bottom!] There is a memory leak in our WinForms application hosting a WPF FlowDocumentReader in an ElementHost. I have recreated this issue in a simple project and added the code below. ...
0
votes
0answers
279 views

WPF Menu opening on mouse over

I am dealing with an issue with a Menu I created in WPF/XAML. To give some background, our application runs on Windows Form. We needed a nice drop down menu and the regular combobox did not meet what ...
0
votes
0answers
75 views

ElementHost repainting

I'm using AvalonEdit in my WinForms application. AvalonEdit is placed onto control with ElementHost on it. Application has RadDock from Telerik and AvalonEdit can be placed on its windows. Often I get ...
0
votes
0answers
76 views

Running Winforms ElementHost for WPF Animation in Backgroundworker or other thread

Done a little searching and couldn't come up with a solution for this one. I currently have a c# winforms GUI with multiple elementhosts tied to WPF usercontrols used to run animations on wpf. When ...
0
votes
1answer
119 views

Strange focus issue with UserControl hosted in ElementHost

I have UserControl which is hoseted in ElementHost. It contains DataGrid When user presses enter or double clicks the row new window is shown (modalless), and when that window is closed window with ...
0
votes
0answers
64 views

Elementhost usercontrols

I´m working with C# Winforms. I have a DataGridView where every row is an entity. I added programatically 5 image columns that indicates through a image in which of the 5 possibles states the entity ...
1
vote
1answer
183 views

How to create Transparent ElementHost's in Winforms/WPF

long time lurker and self taught OOP and c# thanks in good majority to the great people here. 99% of my problems I seem to find out by searching all over the net but I'm stuck with this one. My ...
0
votes
1answer
146 views

Windows Forms, Element Host and style inheritance

I have a Windows Forms application in which I host a usercontrol created with WPF. This is done using the Element Host class. All WPF elements in the element host container inherit the windows forms ...
2
votes
1answer
119 views

WPF element hosted in ElementHost not redrawing correctly

I'm writing a program to implement COM component in C#. This component provides a UI component too. In the interest of making it easy to implement future additions to the component, I decided to write ...
0
votes
1answer
122 views

How to find a WinForms control's owner form if it is nested into ElementHost?

One of our customers hosts our WinForms .NET grid control iGrid.NET (http://www.10tec.com/) inside a WPF ElementHost container together with other WPF controls. It may look strange as it's a WinForms ...
2
votes
1answer
118 views

Application.Current in ElementHost is null

I use a WPF UserControl in my personal Libs. The Libs are included in my WPF and WindowsForms programs. Now my UserControl has to show a new (WPF) Window. At the new Window I want to set the Owner. I ...
1
vote
0answers
155 views

How to add ElementHost to Datagridview Cells in C#?

I want to add ElementHost to my datagridview to bring the designed WPF control to the win form. My question is how to do this! This is my code so far: dgv.Columns[0].Name = "controls?"; ...
3
votes
2answers
529 views

Rendering issue with WPF controls inside ElementHost

I am having a WinForms control, inside that I have a TableLayoutPanel which holds multiple ElementHosts and each ElementHost contains a WPF control. Everything works fine except when the size of ...
0
votes
0answers
124 views

elementhost, view, viewmodel, windows usercontrol

Can someone plese provide me with some information on how to use an elementhost(xaml/view) inside a window's usercontrol that gets it's data through a call to the viewmodel? I've been struggling with ...
0
votes
3answers
591 views

Resize Form based on ElementHost size

I have a Form(winform) and it contains Elementhost. During run time, i am hosting my WPF Usercontrols to this elementhost. I have used AutoSize = True for elementhost. Elementhost resizes itself ...
0
votes
0answers
144 views

How to Drag a List View Item from Winform to a Wpf Listview

I have a listview on a winform which has serializable data. I want to drag this data on another winform which has an elementhost with a wpf listview. Problem is that when i drag the item from winform ...
0
votes
0answers
215 views

WPF focus issue when hosted in elementhost in winform application

I am hosting a WPF usercontrol in an elementhost of a windows forms application. It works fine in win7 but in win XP when an error dialog box pops up from the winforms application on receiving an ...
0
votes
1answer
185 views

Potential memory issues with ElementHost'ed WPF form and grid binding approach?

When a user clicks on a WinForms menu item, this code gets executed: // this is an Infragistics XamRibbonWindow var someWpfInfragisticsWindow = new SomeWpfInfragisticsWindow(); ...
1
vote
0answers
72 views

Visual Studio restarts when having 2 elementHosts

I have a usercontrol with 2 elementHosts whithin it. I set the elementHosts' Child property programmatically in Load() event. The problem is, when I try to add that user control to a form, Visual ...
0
votes
1answer
420 views

WinForms ElementHost Error

I am building a set of WPF controls on the side of my WinForms application so that I can convert the entire project over to WPF eventually. I am using the WinForms ElementHost module and setting my ...
0
votes
1answer
535 views

Element host doesn't resize child properly

I'm hosting a WPF control in WinForms using the elementHost control. When I try to resize the elementHost (in height) any further then the orignal position, the child control inside is centered and ...
1
vote
2answers
448 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 ...
0
votes
1answer
405 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 ...
2
votes
1answer
264 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 ...
0
votes
2answers
296 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
3answers
1k 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 ...
1
vote
2answers
124 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
434 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
2answers
1k 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 ...
3
votes
1answer
478 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 ...
0
votes
1answer
342 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
2k 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
1answer
169 views

ElementHost DropShadowEffect

I am using ElementHost to host a WPF user control in a WinForms control. My WPF control has DropShadowEffect but it is not shown on the screen. The WPF control is flat. What do I need to do? Here is ...
0
votes
1answer
312 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, ...
1
vote
1answer
407 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, ...
0
votes
1answer
234 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
728 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 ...
4
votes
1answer
1k 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 ...
0
votes
1answer
458 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, ...
8
votes
1answer
2k 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 ...
5
votes
2answers
4k 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 ...
0
votes
1answer
523 views

ElementHost gives me “The calling thread must be STA, because many UI components require this.”

I just added an ElementHost to a windows Form(There are some other c# code in the Form). Then it gave me the error "The calling thread must be STA, because many UI components require this." I changed ...

1 2