Tagged Questions
The windowsformshost tag has no wiki summary.
8
votes
4answers
809 views
Can I overlay a WPF window on top of another?
I have a WPF window, which contains a WindowsFormsHost element. I need to draw things on top of this element, but the nature of WindowsFormsHost means that it's always on the top of the drawing pile. ...
7
votes
2answers
673 views
WPF hosting a WinForm, Tab Navigation problems
I have run into issues when hosting a WinForms form within a WindowsFormsHost and the tab navigation. To solve I have made this simple example:
Created WPF Window (starting point of app)
Created ...
4
votes
2answers
2k views
Application.Idle event not firing in WPF application
I am using a third-party Windows Forms control that performs some actions "delayed" using the Application.Idle event.
Now that we're moving our application to WPF, these actions stopped working.
I've ...
3
votes
1answer
288 views
WIndows Forms Chart in WindowsFormsHost does not receive mouse wheel?
i have a Forms.DataVisualization.Charting.Chart in a WindowsFormsHost. I can't get the chart to receive mouse wheel events. Clicks are working, if i try with a Forms.TextBox the mouse wheel is ...
3
votes
1answer
292 views
WindowsFormHost items in a WPF ListBox - Z-Order
I have been to the end of the web and back and I can't seem to find any solution for my Z-Ordering WindowsFormsHost Issue. My issue is specific to rendering a ListBox where the items are ...
3
votes
1answer
154 views
Trap keyboard input in a WindowsFormsHost control in WPF
I have an ActiveX control inside a WinForms user control. My WinForms app loves it!
Now, moving over to WPF, I use the user control in a WindowsFormsHost control. Works great..., but I want to treat ...
3
votes
1answer
633 views
“Invalid Window Handle” on exiting of WPF application that uses System.AddIn
I am working on a WPF application that is using System.AddIn to solve a memory leak issue we were having with a Windows Forms based control that was wrapped in a WindowsFormsHost control. The add-in ...
3
votes
2answers
1k views
WPF Popup and WindowsFormsHost Problem
I am hosting windowsforms control in WPF popup. Problems below:
If i make StaysOpen=False i can't interact with winform control. StaysOpen to false is required because when clicked outsidet the ...
2
votes
1answer
510 views
How to make s WPF menu look like a Windows Forms ToolStripMenu?
I am new to WPF. And by new I mean I just started it today after getting .net 3.5. I usually do GUI Development in Windows Forms and like the awesome ToolStripMenu. But when I saw the WPF Menu, it was ...
2
votes
0answers
185 views
How do you capture/generate an image from a IPreviewHandler COMIMPORT in WPF/C#?
I was wondering if it is possible to generate an image (capture) of a ComImport object (like the Win7 PreviewHandler)?
I've tried to utilizing RenderTargetBitmap (on the parent control hosting the ...
1
vote
6answers
69 views
How To Add Winform To WindowsFormsHost
My Main Project Is Under WPF, In My Solution I have:
winform which name is Form1
wpfForm which name is MainWindow.xaml
I want to do this job: if button clicked, I show the Form1 in MainWindow ...
1
vote
1answer
115 views
Can I dock Lync SDK conversation on WPF without using winformshost?
I'm trying to build an application taking Lync SDK as a base, according to documentation on MSDN I need to dock the conversation windows on a winformshost.
But the problem here is winformshost is ...
1
vote
1answer
36 views
Impact of updating DynamicRessource inside the transparent background of a WindowsFormsHost
I have a windows form control inside wpf application using a windows forms host.
the windows forms control have a transparent background.
The WindowsFormsHost have the background color defined ...
1
vote
1answer
76 views
WPF equivalent of Form.BeginResize / Form.EndResize
In WinForms we had the ability to hook Form.ResizeBegin and Form.ResizeEnd to be notified when a Form was about to begin resizing and after it had finished resizing.
Is there a way to get similar ...
1
vote
1answer
117 views
WPF: Why does the UI become sluggish with multiple WindowsFormsHost?
I have a data-bound TreeView with a WindowsFormsHost in the data template of its items. The more items in the TreeView, and so the more WindowsFormsHost in it, the slower the UI becomes.
The ...
1
vote
1answer
355 views
Using a complex Winforms control like ZedGraph in WPF with MVVM design
I am building a WPF desktop application built on the MVVM pattern.
I want to display a number of graphs, and have decided on the old ZedGraph library, as I am familiar with it and there does not seem ...
1
vote
2answers
534 views
Render WPF control on top of WindowsFormsHost
I know that default WPF behaviour is to render WPF controls and then on top render WinForms, but are there any way to render WPF on top of WindowsFormsHost?
Edit: I have found a temp hack as well. ...
1
vote
1answer
292 views
WindowsFormsHost doesn't resize panel
Hi I am trying to host a Panel in a WindowsformsHost control as follows:
<DockPanel LastChildFill="true" Grid.Column="1" Grid.ColumnSpan="2">
<WindowsFormsHost Name="FormsHost" ...
1
vote
1answer
131 views
wpf WindowsFormHost
Hi Every Body
Am Working With WPF Application
I Needed To Use MS Reports In My Application So I Used WindowsFormsHost
But The Problem Is That The WindowsFormsHost Can'nt Handle Touch Events
How I Can ...
1
vote
2answers
707 views
wpf WindowsFormsHost is not visible when AllowsTransparency=“True”
somebody addressed this issue here http://social.msdn.microsoft.com/forums/en-US/wpf/thread/6f9dd3b5-af92-4076-9b4e-1a770dd52f70/
but that was in 2006. i am currently using .net framework 3.5. Is ...
1
vote
1answer
699 views
WindowsFormsHost and DependencyProperty
I've got a Windows Forms control that I'm attempting to wrap as a WPF control using the WindowsFormsHost class; I would like to bind the legacy control to a view-model. Specifically, the control ...
1
vote
0answers
627 views
WPF doesn't always repaint when using WindowsFormsHost
I have a simple application which is hosting a Managed DirectX Control using WindowsFormsHost. I've overridden the paint methods in the Control to prevent flicker:
protected override void ...
1
vote
2answers
750 views
Using SetWindowTheme() on controls in WindowsFormsHost in WPF?
I have an application I'm developing which closely mirrors Windows 7's Device Stage. In Device Stage, beneath the main banner there is a ListView containing actions embodied as ListViewItems.
In my ...
1
vote
4answers
3k views
WPF WindowsFormsHost sizing
I wanted to wrap a windows forms control in a wpf UserControl
<UserControl x:Class="MVVMLibrary.ReportViewer"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
0
votes
0answers
21 views
Cursor Doesnt Change on a AxShockwaveFlash Control on WPF application
I have a flash video and its working well, however I need to change the default cursor. For the rest of my app I am using
WPF Tutorial - How To Use Custom Cursors
and implimenting this to change ...
0
votes
0answers
18 views
Display PDF Takes Focus and Eats Hot Key
Used code I found on SO to use the COM based Acrobat Reader to display PDF via hosting in a WindowsFormsHost.
It displays the PDF fine. Two problems:
When I load the PDF the control ...
0
votes
0answers
10 views
Form events are not fired through NavigationService
I have WindowsFormsHost inside the WPF page say Page1
WindowsFormsHost has child winform say Form1.
Form1 has Paint method Form1_Paint();
I am navigating from Page1 to Page2 using ...
0
votes
0answers
23 views
Docked panel in floating state is not displayed in WPF
I am using DockableControlPane (Infragistics control to display Docking) and displaying it in floating mode in the WinForm say Form1
This Form1 is used in the WPF application using ...
0
votes
1answer
55 views
WPF.Implementing Drag from ListBox and Drop onto hosted ActiveX control
I have a WPF application which hosts a (activeX) VisioDrawingControl (using WindowsFormsHost)
I'm trying to implement a drag&drop behaviour with drag elements from a WPF listbox and drop onto the ...
0
votes
1answer
52 views
error when hosting Windows Form user control in WPF
Im trying to host Magtek card reader into WPF, so i encapsulated their demo into a Windows forms user control, when i use the dll from this control in a Windows application, it works fine, but when ...
0
votes
0answers
124 views
WindowsFormsHost in WPF MDI on Aero main form (C#)
My crazy problem: I'm using a docking system (AvalonDock) on a WPF form with aero glass style background (what looks really nice). In one dockable MDI I need a WinForms custom control, so I just used ...
0
votes
1answer
70 views
Adding Transparent backgrounds to WindowsFormsHost Controls in WPF
I'm using the WindowsFormsHost to add a Windows Forms control in my WPF application, but I realise that WinForms controls cannot have transparent backgrounds without setting the style as in here How ...
0
votes
1answer
64 views
WindowsFormsHost content doesn't show when its given to a ContentPresenter
I have WinForm controls I want to put in a WPF DropDownButtons(Extended WPF Toolkit) DropDownContent. Putting the controls to a WindowsFormsHost and that one is giving to the DropDownContent doesn't ...
0
votes
1answer
98 views
Controls don't show over Winforms Host
I am trying to load a swf file as background for my WPF window. For this I have used a WinformHost and I load the swf movie in the Winform host using the plugin AxShockwaveFlashObjects.
<Grid>
...
0
votes
2answers
89 views
WPF Commands Firing despite having Focus in WinForms TextBox
Given:
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
...
0
votes
1answer
38 views
Putting a windowsformhost inside a usercontrol
I'm trying to put a windowsformshost inside a WPF UserControl. Whenever I shrink the size of the UserControl the windowsformshost seems bleed out of the UserControl? Is there anyway to make the ...
0
votes
1answer
150 views
Writing a WPF WinForms Control wrapper
I am using a win forms control library for which I do not have the source code.
My app is c# WPF/XAML, etc. So, I am writing wrappers for the WinForms controls. Other than a few minor inconvenient ...
0
votes
2answers
484 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
35 views
Displaying a listbox of WindowsFormHosts controls
I am in WPF Airspace hell right now. I am racking my brain and I'm getting nowhere. I have a requirement to display a list of child/3rd party controls that obviously need to be wrapped with ...
0
votes
0answers
329 views
WindowsFormsHost does not resize when user resize the wpf window
I have a wpf window, and have a windowsformsHost on it. set its child to another non-wpf windows form. When i resize (stretch) the wpf window, somehow windowsformshost does not resize accordingly. so ...
0
votes
1answer
273 views
WPF 4: Windows Forms Host, Crystal Reports Asynch
Is there a way to render WinForms controls like Crystal Reports Viewer asynch, or even in a different thread, without freezing the applicaton.
My problem is that, when I assign the report source ...
0
votes
1answer
180 views
WPF TabControl / File open needs to locate child WindowsFormsHost
I'm trying to write a text editor in WPF and I have a problem trying to locate the correct instance of an editor within a TabControl in response to a File -> Open action.
Tab items are added ...
0
votes
1answer
263 views
WPF TabControl with WindowsFormsHost unknown border issue
I am writing a text editor in WPF and I seem to have a strange border that I can't remove.
I've got a grid with a tabcontrol, and when a user selects "File -> New", I programatically add a new ...
0
votes
2answers
573 views
Windows Form user control hosted in WPF - How to capture the leave event?
In my WPF application I'm hosting a custom Windows Form User Control together with other wpf controls. My custom user control is hosted in wpf using a WindowsFormsHost control. This custom user ...
0
votes
1answer
232 views
Wrapping with Dependency Properties
I've got a Windows Forms control that I'm wrapping with a WindowsFormsHost-derived class to access WPF's data binding functionality. The Forms control exposes properties that indicate its state, along ...
0
votes
1answer
575 views
WindowsFormsHost Winform pdfviewer control problem
I have a wpf Usercontrol, inside i am using a Winforms pdfviewer to display pdf files. Also i have couple of Textboxes to enter document details. finally, A popup which display this user control.
...
0
votes
2answers
455 views
Instantiate a Windows Forms control in WPF without default constructor
I am trying to host a custom Windows Forms control in WPF. My custom control does not have a public constructor, and it has a static Create() method which looks something like this:
public abstract ...
0
votes
2answers
2k views
In WPF how can you draw a line over a WindowsFormsHost?
Here is my XAML
<Grid
Name="grid">
<TextBlock
Text="Some Label" />
<WindowsFormsHost
Name="winFormsHost">
</WindowsFormsHost>
</Grid>
...
0
votes
1answer
1k views
WPF WindowsFormsHost VS2008 Toolbox has grayed out all the Windows Forms controls
I'm trying to use WindowsFormsHost in a WPF app so I can use some Windows Forms components.
<Grid>
<WindowsFormsHost>
</WindowsFormsHost>
</Grid>
This all works ok ...