Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
2answers
411 views

WPF repaint issue

I am having an issue with repaint of my WPF control. The WPF control is added as an ElementHost.Child for a Windows form. When Windows 7 goes into powersave mode and is brought back to normal (by ...
12
votes
1answer
180 views

Host IDeskBand in a Windows Form

I'm trying to display the Address toolbar from the Windows Taskbar in my own WinForm. I can get the CLSID of the Address toobar ({01E04581-4EEE-11d0-BFE9-00AA005B4383}), and I can get an IDeskBand ...
8
votes
2answers
386 views

WinForms to WPF - How do we get there from here?

Is there a practical way for us to slowly evolve a WinForms application to WPF without creating a support nightmare for ourselves with strange interop scenarios? Background info: We have a large ...
6
votes
2answers
844 views

Override tooltip text for Titlebar buttons (Close, Maximize, Minimize, Help)

I have been trying without luck to change the text of the tooltip that appears for the buttons on the main title bar of a form. In a nutshell, we have harnessed the 'Help' button for Windows Forms to ...
5
votes
1answer
115 views

Windows dialogs with large fonts

I'm consulting on a large .Net winforms project that has to be able to run in "Touch" mode so it can be operated using a touch screen interface. The application architecture already contains scaling ...
4
votes
1answer
153 views

WPF interop deadlock on DisplaySettingsChanging

I have a WPF application that hosts a modeless Win32 form. Everything runs smoothly, until I attach or detach VNC to the machine. Then the application deadlocks: It doesn't redraw anything anymore, ...
4
votes
2answers
288 views

Setting “AcceptButton” from WPF WindowsFormHost

I have a winforms usercontrol with multiple buttons in a WPF Control. My usercontrol was previously hosted in a windows form and I was able to so this.ParentForm.AcceptButton = this.btnSearch; ...
3
votes
2answers
213 views

Keybords inputs in a WPF user control are not sent to the WinForms container

We have a WinForms application that we are progressively converting to WPF. At this point the application's main form is a Form (WinForm) that contains a vertical sidebar built in WPF. The sidebar is ...
3
votes
1answer
278 views

WPF WindowsFormsHost does not bubble up untreated key gestures

Ok, I'm not sure I understand how this should work, but in my app I have bound a key gesture (Ctrl+K) to a RoutedCommand. No matter where I focus in my app, the key combination works, except if I use ...
3
votes
1answer
266 views

How to add a WPF window to a WinForms App

I'm creating a HUD window for inspecting biz entities in my WinForms application. I wanted to have a completely different style of window (minimize the content area and showing only the TitleBar, no ...
3
votes
1answer
232 views

What's the best way to handle the same shortcut in WPF and WinForms controls?

I have a WPF application with the following KeyBinding on its main window: <KeyBinding Command="Commands:EditCommands.Undo" Gesture="CTRL+Z" /> <KeyBinding ...
3
votes
2answers
846 views

Is it possible to host a WinForm form within a WPF Form via a container/wrapper?

Is there a way to host/display a full WinForms form (not just a single control) within some sort of container or wrapper type control within a WPF form? I’m looking for something similar in concept ...
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
90 views

How To Mute “DING” Sound When User Click Outside Form?

I'm showing a form using Form.ShowDialog(), in this Form I have override void WndProc(ref Message m) because I want to close this form when user click outside Form area. private const int ...
2
votes
1answer
149 views

WinFormsHost with custom component takes 70 seconds to load

We have a dialog to display the the user manual. This dialog is a simple WPF user control that hosts a third party PDF viewer (O2 Solutions PDFView4Net) inside a WinFormsHost: ...
2
votes
1answer
209 views

Visual Studio 2010: using a winforms user control in a VSPackage Tool Window

when creating a simple VSPackage with a Tool Window a sample WPF user control is created and added to the Tool Window. Must this user control be of WPF? i have a winforms user control and, when adding ...
2
votes
2answers
338 views

Mouse events are not received by a WPF ScrollViewer when hosted in a WinForms container

We have a WinForms application that we are progressively converting to WPF. At this point the application's main form is a Form (WinForms) that contains a vertical sidebar built in WPF. The sidebar ...
2
votes
1answer
196 views

How do you implement drag and drop from a small WPF Element host in a Winforms application?

In our app we host a small WPF Listbox inside of an Element host, we implement drag and drop using the PreviewMouseDown event... private void Border_PreviewMouseMove(object sender, MouseEventArgs ...
2
votes
3answers
533 views

Can I use a WPF control in WinForms to achieve transparency effects?

Is it possible to use WPF in WinForms, to implement the idea used in this question. I am trying to create a semi-transparent panel.
2
votes
1answer
270 views

Setting application-wide hotkey in C#

There is a post to set system-wide global hotkey in C# here I want to set application-wide hotkey such that if user presses a hotkey on any child window of an application, a particular window will ...
2
votes
1answer
279 views

how to add a WPF dialog to a Winforms project

Hi I am using Visual Studio 2008 targeting .net 3.5 framework. I need to add a WPF dialog to a Winforms project. I was thinking that by adding reference to PresentationCore, PresentationFramework and ...
2
votes
3answers
179 views

WPF Menu on Winforms

Is it possible to show WPF Context menu on WinForms? If yes, how could we do that?
2
votes
1answer
301 views

How do WinForms controls inside WPF WindowsFormsHost remote?

Say, I have a WPF program with a Windows Forms control in "WindowsFormsHost" on some of its windows. I use that program via Remote Desktop. How will this control's graphics remote? Via GDI ...
2
votes
2answers
642 views

Can I load more than one COMCTL32.dll into a process?

I'm developing an ActiveX control which (these days) is used mostly in WinForms apps. The ActiveX control has a 'property page' dialog, which can be shown programmatically using the ShowPropertyPages ...
1
vote
3answers
152 views

Unable to load DLL “OraOps10.dll”

I am running into peculiar issue. I am developing a windows based application which connects to Oracle database. For initial testings, I have created installer and tested on different machines that I ...
1
vote
3answers
134 views

C#: Windows App Reading CSV file and Writing to a Console Issue

I have a Windows Forms app that is able to launch a console for debuggin. In the app, through a menu click, I read a CSV file and write it to the console. The function that does this is below. ...
1
vote
1answer
143 views

WinForm App running a console - Disabling minimize/maximize/close buttons on console issue

I am writing a windows forms app that can launch a console for debugging. I want to disable the close button of the console so that the windows forms app cannot be shut down through the close button ...
1
vote
1answer
91 views

Events not firing when hosting DataGridView in Winforms Host

Im trying to host a Datagridview in a WPF usercontrol. The datagridview is added to the winformshost in the constructor and the Enter and Leave events wired up. The Enter event fires the first time ...
1
vote
2answers
59 views

How Can I Check if a Window is an MDI Window?

I imagine there's some user32.dll call that I can use to verify if a window is an MDI window, like using DefMDIChildProc and seeing if it fails, but I wonder if there's any limitations to this, or if ...
1
vote
2answers
453 views

Assembly generation failed — Referenced assembly 'Interop.Office' does not have a strong name

I have a WPF 4 project to interact with word documents made in VS2010 and a win form User Control project to host word application into it. And other com dlls. All com dlls are referred into my main ...
1
vote
1answer
336 views

How to connect to outlook 2010 while its running in c#?

What I am trying to do is add an "Email To..." button to a winform client that opens a new outlook mail window and attaches a file so the user can forward it. I can get the outlook integration working ...
1
vote
1answer
188 views

Good books for Windows Forms and GDI+ [closed]

I am looking for good books, training videos and free online resources for Windows Forms and GDI+. My focus is as follows: Learning how to program with Windows Forms and GDI+. Learning how to ...
1
vote
1answer
610 views

Why is Interop.WMPLib unable to load assembly in Release mode, but works in Debug mode?

I have added the Windows Media Player com control into my toolbox and then used the control successfully on a Form in Debug mode. However, when I try running the application in Release mode it ...
1
vote
1answer
225 views

How do I set an umanaged dialog as the Owner of a WinForm Form?

I need to be able to get a WinForm dialog's Owner's HWND. In unmanaged I have a background thread that gets the HWND for the window in front. The code then calls ::GetParent(frontHWND) to see if it ...
1
vote
0answers
98 views

WPF Custom Control Embedded in WinForms

I am doing some maintenance work on an existing VB.Net(3.5) app. This app opens a window and inside this window I have embedded a WPF User Control that I put together. I created a public delegate sub ...
1
vote
2answers
189 views

ScrollWindow has Absolutely No Effect

I'm creating a User Control for WinForms and have the need to scroll a section of the control window. Inexplicably, it appears no ScrollWindow() method is available in WinForms. So I'm trying to use ...
1
vote
0answers
211 views

MDI app Menu Shortcut keys getting swallowed when form with WPF ElementHost is active

I have a Winforms MDI app, and my newest form is developed as a WPF UserControl hosted by a System.Windows.Forms.Integration.ElementHost. I have found that when the MDI child with the WPF content is ...
1
vote
2answers
375 views

Hosting Windows Forms UserControl into Silverlight application

I've a DLL written in Windows Forms. I need to host one UserControl from this DLL to my silverlight project. Is this possible? In WPF, this is possible using WindowsFormsHost : <WindowsFormsHost ...
1
vote
1answer
159 views

How does an AppDomain get created?

In .Net we can create AppDomain by writing AppDomain domain = AppDomain.CreateDomain("MyDomain"); My question is, How it is created internally ? Application in which we use this code that ...
1
vote
0answers
224 views

Focus problem in WPF with WindowsFormHost

I have this simple setup: <StackPanel> <TextBox Text="wpf1" PreviewLostKeyboardFocus="TextBox_PreviewLostKeyboardFocus" /> <TextBox Text="wpf2" ...
1
vote
4answers
209 views

Open Lotus Notes mail page without sending from .NET

I'd like to open a new email page, in Lotus Notes (I know I know, I hate it too...) from a WinForm (.NET) application. Right now, I have found this that uses Interop.Domino.dll very useful. I adapted ...
1
vote
1answer
375 views

Winform->WPF MVVM Keybinding Error?

I need some assistance in getting WPF KeyBindings working when being called from a WinForm application. I've created what I think is the basic parts to demonstrate the problem. I can provide an sample ...
1
vote
1answer
481 views

WPF windows forms host keyboard events

This is probably a simple question but i've been unable to find a quick answer. I have a WPF application which has a Windows Forms Control hosting a GeckoFX component (doesn't really matter). What i ...
1
vote
1answer
85 views

Can I Call unmanaged Mobile CE Dll from Full .Net Framework (Run on Desktop)

I have an Unmanaged Lib compiled for Windows Ce. I am trying to call this dll from VB.net Full Framework .Net 4 Client Profile Windows application. I am trying to use the same code that I use in the ...
1
vote
2answers
426 views

Show Form with PInvoke

I have below scenario: WinForms app which allow only one instance of this app to be run (Mutex is in use here to check). App on start with some paramatere is runnig but hidden. When somebody will ...
1
vote
2answers
1k views

WPF/WinForms/GDI interop: converting a WriteableBitmap to a System.Drawing.Image?

How can I convert a WPF WriteableBitmap object to a System.Drawing.Image? My WPF client app sends bitmap data to a web service, and the web service needs to construct a System.Drawing.Image on that ...
1
vote
1answer
360 views

How can I make a WinForms Form work as a DockableContent in AvalonDock?

I am able to use WinForms controls, but not an entire form: var foo = new DockableContent(); foo.Title = "Foo"; foo.Name = "FooName"; var c = new ...
1
vote
0answers
499 views

WindowsFormsHost not showing when Wpf Window style is set

I have a WPF Window that has a WinForms Button inside. When I set the Style of the Window the button isn't rendered, but when the Window Style is not set the Button appears as it should be. Window ...
1
vote
1answer
165 views

WinAPI magic and MONO runtime

I'm trying to get the same result of a .NET application (see the link Hide TabControl buttons to manage stacked Panel controls for details), but using the MONO runtime instead of the MS .NET runtime. ...
1
vote
2answers
1k views

How to avoid visual artifacts when hosting WPF user controls within a WinForms MDI app?

When hosting WPF user controls within a WinForms MDI app there is a drawing issue when you have multiple forms that overlap each other that causes very distinct visual artifacts. These artifacts are ...

1 2