Tagged Questions
0
votes
1answer
15 views
How to implement my own graphics clipping?
I have a task for my Computer Graphics classes. I have to create an application with the following features:
There is a dolphin floating on the screen, the user can move it around,
The dolphin is ...
1
vote
1answer
22 views
WinForms WebBrowser in WPF memory leak
I'm currently working on an application where I am using WinForms WebBrowser controls in WinForms hosts. The problem is even when I close a browser and dispose of everything the memory doesn't seem to ...
1
vote
2answers
43 views
Open WinForm from WPF application?
I've created an WPF and WinForm Application, what i need to do is
open the WinForm from the WPF application. Both are in the same solution but they're diferent projects.
I tried the following:
Dim ...
-1
votes
0answers
27 views
Why is the DataGridView in WinForm faster than DatagridView in WPF?
I have data in table in SQL Server Database, when I fill them in DataGridView in WinForm it takes one or two seconds, but when I use DataGridView in WPF it takes from 20 to 40 seconds.
Why is the ...
0
votes
1answer
55 views
Open a WPF Window from WinForms & link form app with WPF app
I'm using Visual studio 2012 & I'm using Win Form app called Form1 & add a new item which is wpf Window is called "wpfWin". I want to open the wpfWin through a button in the Form1 once it's ...
0
votes
0answers
18 views
Adding WPF UserControl to Winform project
When I try to right click on the project and Add->New Item-> WPF it say to me "No items found".I want to add WPF UserControl to a Winform project. I have this problem only with this project, when I ...
0
votes
1answer
87 views
Design advice on WPF (tree grid view) with windows forms [closed]
Our project is based on framework which is basically windows forms base but is based on .net framework 4.0. I am planning to introduce WPF using windows form host.
As a concept, i have already did ...
0
votes
1answer
52 views
Good .NET Localization Utility [duplicate]
I am looking for a good localization utility for my WPF/WinForms .NET application.
I would like it to be able to reflect through my Resx/Resource files in my compiled application and give me a grid ...
7
votes
2answers
73 views
How to set the Selected item in the tree view on the Left side of CHM file
I have a CHM helpfile for my WPF Application. My CHM file contains "htm" files for each page of my application. I want to open the help file for the corresponding page when the user presses F1 on that ...
0
votes
1answer
56 views
Simple status message implementation
I'm trying to create basic class which will allow different controls to bind-in and display some values.
I want to have static list of objects, where each object has some properties like caption, ...
0
votes
1answer
44 views
how to assign System.Drawing.Image object in WPF's Image control
I am using a DLL which is returning a System.Drawing.Image object in return. I was using that DLL in winform c# and was working fine. Now am upgrading my applicationin in WPF and confuse how can i ...
0
votes
1answer
30 views
Executing third party code
We have a WPF (Windows Forms is also applicable) application and for some functionality we are dependent on other teams. I am looking for a best way to execute the functionaity from other teams ...
0
votes
1answer
29 views
how to change the layout of a control inside a parent wpf form from a child winform?
i have two separate projects inside a solution, one is a wpf the other is windows form and i have referenced the winform to the wpf project.. Inside the wpf window is an image control, when clicked, a ...
0
votes
1answer
41 views
how do i convert these c# winform codes to be compatible on c# wpf?
hi im working on a project that uses invoke and threads.. it is a simple remote desktop program with chat.. i got a sample here on the internet in c# winform, but i would like to convert it to wpf.. i ...
6
votes
2answers
82 views
How to avoid a databinding / events hell on a complex screen?
This is more of an architecture / design question.
I have run into a few projects in the past WPF/Windows Forms etc that have complex screens with a lot of fields and these fields are connected to ...
2
votes
0answers
31 views
EnableModelessKeyboardInterop or WindowInteropHelper when opening a WPF window from a Winforms app
I have a winforms application opening a wpf window. I've used both methods below:
System.Windows.Forms.Integration.ElementHost.EnableModelessKeyboardInterop(window)
and
Dim helper As ...
-1
votes
4answers
53 views
How to access 'shared' variables from different controls inside a method
I have many different types of controls that I want to have a fade effect on, when the mouse hovers over it. I need to get my method to work like this:
public void doFade(Object myControl){
...
0
votes
1answer
147 views
Splash screen - winforms vs. WPF ? VS 2012 [duplicate]
In browsing MSDN I saw that one could easily create a Splash-screen by importing an image file & setting the Build Action to 'Splash Screen'.
Is this only for a WPF or can I do the same for a ...
2
votes
1answer
67 views
Are native Windows Controls still used in .NET GUIs?
Is the stuff that is displayed when you create a GUI with WinForms or WPF still based on the native controls like Common Controls or any of the system provided Window Classes or is everything that is ...
0
votes
0answers
24 views
TabControl with a WPF container in a tab, blocks the Ctrl+Tab
I have a WinForm, having a TabControl.
In that TabControl I have 2 "normal" tabs, and in the third I have embedded a WPF UserControl.
So, when I switch tabs using the Ctrl+Tab everything is OK, until ...
0
votes
1answer
73 views
TopMost window going behind non-TopMost fullscreen window sometimes
I have a "control toolbar" app that needs to float on top of everything else on the primary screen of a dual monitor system. It positions itself at the top of the primary screen and sets TopMost=true.
...
0
votes
0answers
25 views
adding .NET 4.5 activities to .NET 3.5 rehosted designer
I'm in an internship in an enterprise which has it's own rehosted designer based on Wndows Workflow Foundation 3.5. I migrated it to the 4.5 version and I'd like to add an activity of this version to ...
4
votes
1answer
121 views
How to create a textbox that only accepts numbers and one that only accepts letters in WPF?
I would just like to know how to create a textbox that only allows the user to type numbers, one that allows numbers and a fullstops and one that only allows the user to type letters?
I used this ...
2
votes
4answers
99 views
How to search through a database using WPF and display the results in a DataGrid
I'm trying to search for a purchase from my database, from the 'PurchaseTable' table and display the results in a DataGrid, I know how to do it using Windows Forms:
private void ...
2
votes
5answers
105 views
why this.close() close application
I have a window in wpf that i want on the escape button to close the window. So i wrotethis code on PreviewKeyDown event, but it closes the entire application, including the main window and current ...
2
votes
2answers
52 views
MethodInvoker in WPF?
Is there any in-built delegate like System.Windows.Forms.MethodInvoker for WPF ?
I was porting some functionality from WinForms to WPF, for this I was not wising to import winforms reference, is ...
0
votes
2answers
100 views
WPF poor rendering of application
I have been working on a WPF C# application and there seems to be a bug when rendering the application.
Basically, I get random/various horizontal lines drawn through my application whenever the ...
0
votes
1answer
58 views
Profiling how a user interacts with a C# Windows Application
I just inherited a C# windows application codebase. It's a relatively large application with lots and lots of UI "elements" that I believe may have been added by the previous developer with little to ...
0
votes
1answer
39 views
Outlook global address book without To, Cc, Bcc options
I'm working on a application where user names for text fields should be retrieved from outlook address book. So only one name can be selected at a time(There should not be To, Cc, Bcc options to ...
0
votes
0answers
82 views
C# Winform controls not drawing
I am working on a heavily used winform C# application.
I have a user control, that has 3 textboxes and it can contain another user control.
user can add n number of main user control on the form.
due ...
1
vote
2answers
91 views
Compatible with both dotnet 3.5 and dotnet 4.0
Originally it is set to use .Net3.5 for compatibility with win7. (Actually using WPF)
However when it comes to users in win8 which supports only the .Net4.0,
it is required for users to download and ...
0
votes
0answers
26 views
How to bind WPF control to ActiveX events?
I have a WPF application which consists of an ActiveX component contained inside a WindowsFormsHost:
_host = new WindowsFormsHost();
_ctrl = new AxCtrl(); // this creates an ActiveX control that will ...
0
votes
4answers
100 views
How to make WPF failover to WinForms
I'm writing an application that will run with either WPF or WinForm. The idea is that if Windows Presentation Foundation isn't on a system (say an older server for example) I want WPF to failover to ...
-2
votes
2answers
63 views
Docking library for C# [closed]
I'm looking for a Docking library for using in the C# application. It can be designed for WPF, but I prefer WinForms applications. Of course, it should provide standart docking opportunities.
I'm ...
1
vote
1answer
48 views
Drawing on top of literally everything
I want to create a utility program for gamers that runs in the background. What I need to do, is display visible messages in-game on certain occasions. So my window does not need to be visible at all ...
0
votes
0answers
33 views
WPF - WinForms hybrid application
I have an application in .NET that launches System.Windows.Forms.Form instances by reading them from xml file.
It is something like following:
<Forms>
<Form type="App1.LoginForm, App1" ...
1
vote
1answer
51 views
Accessing WPF controls from a hosting WinForm application
I have a WinForm application in which I am trying to replace my toolbar with a WPF toolbar.
My solution now contains two projects:
A WPF user control project that defines the WPF toolbar
A Windows ...
0
votes
0answers
35 views
How to set the height of a hosting Windows Form according to the actual height of a WPF user control?
In my WinForm application I have the following class:
public class ItemProperty
{
public string Name { get; set; }
public string Value { get; set; }
}
I've added a WPF user control that is ...
2
votes
1answer
57 views
how to print something that is not shown on the screen
I've been struggling for while now in printing a document,
the document have a header footer and body,
the body (which is a grid) have different size for each different document.
the document may ...
1
vote
2answers
147 views
Parallel Programming using TPL on WinForms
I trying to use TPL on WinForms .NET 4.0, I followed this steps (go to the end of article) that are for WPF and made some small changes so it could work on WinForms but it still doesn't work.. It ...
3
votes
1answer
80 views
How to convert Word Equation to an Image?
I want when i Copy/Paste an equation on a RichTexyBox(wpf/win) I Convert it to an Image.How can I do it?Or Can I get it from clipboard as an image ?
-1
votes
1answer
108 views
How to apply Windows Forms Control to WPF Custom Control Library?
I'm trying to encapsulate Windows Forms Control (from previous version of project) to WPF Custom Control Library. Because I want to use it in future Wpf applications (like drag&drop from toolbox ...
0
votes
2answers
106 views
How to stop Caliburn Micro from closing the application when all views are deactivated?
I am in the process of upgrading an old winforms program to WPF that utilizes Caliburn Micro for MVVM and Ninject for DI.
I have updated my solution to a WPF solution which runs a non-generic ...
0
votes
3answers
104 views
Simple dialog based application using C# [closed]
I want to develop a simple windows application (using C#) as follows:
a simple dialog based application with three screens
the first screen is just a screen to welcome the user and give some ...
0
votes
2answers
86 views
Converting a WinForms form to WPF
I've written a media player application in C#, and I was wondering if there was any way to use WPF to change the border of the form without converting the whole project over to WPF. I'm asking this ...
0
votes
2answers
91 views
Add Windows User Control to a WPF View
I need to add a Windows form User Control (Barcode_Scanner.cs) to a WPF View (MainWindow.xaml)
Is there a simple way to do this?
Any help would be appreciated.
0
votes
2answers
45 views
Using a WPF Control with WinForms
I have a customized WPF button control and I want to use this control with a WinForm application. I know how to use WPF user controls with WinForm using ElementHost. But I have no idea to use any ...
0
votes
0answers
31 views
Is there any usercontrol like WPF's UniformGrid in windows forms [closed]
Is there any out of the box solution to have something like WPF's UniformGrid in windows forms application?
I have to show multiple instances of a usercontrol on a form as we can do with WPF's ...
9
votes
5answers
149 views
Apply update without restarting application [closed]
Recently I had an interview for a .NET position. Out of questions asked, I was having real trouble in answering one question. I hope someone can help me on this.
Scenario (Question): The first ...
4
votes
3answers
707 views
Transitioning from Windows Forms to WPF
For a long time now, I have been stuck with Windows Forms development (started with VB6, and has continued through to C# .NET 4.5), and I have pretty much hit the limit of what Windows Forms can do, ...



