Tagged Questions

2
votes
2answers
780 views

Really annoying bug with TopMost property in Windows Forms

I have this Windows Forms application where it sits in the notification area. Clicking on the icon brings it up front, clicking it again (or clicking on the app X icon) sends it back. This is the type ...
0
votes
1answer
40 views

Launching OpenOffice from WPF app. AlwaysOnTop

I am launching openoffice 3.3.0 on Windows 7 from a WPF app no problem, however when launching on XP openoffice always goes behind my WPF any way to stop this ? C:\Program Files\OpenOffice.org ...
0
votes
2answers
560 views

C# - Window always on top problem

So i'm making an overlay, and I need it to be always on top. To do so, i just set chackBox1.checked = true; private void checkChanged(object sender, EventArgs e) { this.TopMost = ...
0
votes
1answer
2k views

RadWindow AlwaysOnTop

Does anyone have any experience with the RadWindow wpf control from Telerik? My problem is that when I open a RadWindow and minimize my application then when I maximize the application the RadWindow ...
0
votes
3answers
335 views

Prevent Process 'A' from spawning Process 'B' which then shows up on top of what should be the “TopMost” Process 'C'

I have a windows form application which needs to be the TopMost. I've set my form to be the TopMost and my application works as I'd like it to except for in one case. There is a 3rd party ...