2
votes
0answers
54 views

Integrate C application with WPF

I have been given a task to develop a Windows application that acts as a wrapper for an existing C application. The C application is controlled by the command line. I want know if it is possible to ...
1
vote
2answers
101 views

Call c native function from C# project

I'm working on a C# project where i have to store in a file, some passwords. I want to encrypt those ones with sha1. I have already the encrypt / decrypt sha1 prog in a C project. I want to call the ...
0
votes
0answers
44 views

sys/mman and zlib on wpf C

I had to develop a C programm for linux serv, that would be able to read and decrypt an encrypted archive which would then become a gzip archive. And finally read the content of this gz archive. I ...
2
votes
1answer
236 views

Load a C# WPF form inside a library from a CLI C++ application

I have a dll file written in C# that is in the same solution as my application which is written in C++ with some files set to compile under the /cli flag. I'd like to load the WPF form inside my C# ...
1
vote
1answer
755 views

Can you launch a process on top of the topmost window? (csharp wpf)

Can you launch a process on top of the topmost window? (csharp wpf) I have the following, but the current window before this one ( a wpf window using window class that has topmost=true ), remains on ...
3
votes
4answers
200 views

How do I start programming graphical Windows programs? [closed]

After a few minutes of searching I've learned that the Win32 API is the lowest-level way to write graphical Windows programs. Is this true? Is there a way to draw things directly to the video buffer? ...
1
vote
1answer
964 views

WPF : How can I sendkeys to another control without taking focus away from the target control

I've followed this question and it works well, but it takes away focus from my sending control. What I'm trying to do is to create an entry box that works like an auto complete text box - a text ...
2
votes
3answers
745 views

XPS open source implementation?

Does any know of any C/C++ open source for XPS [XML Print Specification]. I found http://www.ndesk.org/Xps, but it is c# ... Any help will be highly appreciated.
1
vote
2answers
375 views

WPF: When is the soonest I can Close my window?

I perform some checks in my Window class constructor, and if they fail I want to display an error message and close the window. I'm getting crashes when calling Close() from the constructor or from ...
0
votes
2answers
2k views

In a WPF tabControl how can I dynamically select a tab page from an object's type?

I've implemented the MVVM pattern and have some viewModels that are bound to tab pages on a tab control. When a specific object type changes (i.e. from Car myVehical, to Bike myVehical), then i ...
2
votes
1answer
154 views

Picture (logotype) in Vista window header

There is a nice feature in modern windows applications for vista. It is picture in the window header. For instance new skype (v4) and google chrome have it. I was woundering what is technology ...
0
votes
2answers
92 views

STArtThread

HI All i'm completing a sample Project(WPF) to show my boss but i need a feature to finish it. I have a Login Window to authenticate and access in the software now i wish put this LoginWindow as ...