Tagged Questions

2
votes
2answers
781 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 ...
1
vote
0answers
85 views

XNA - Set The Windows is Always-on-Bottom

Lets say i have created a small game with XNA. Now i can change the windows attributes of the Game by simply obtaining its Form Object by casting & do stuff with it as i can do with normal C# ...
0
votes
1answer
120 views

Display a windowless Forms PictureBox, always on top

How can I write an windows forms app that displays (multiple) windowless picture boxes, that are always shown 'on top' i.e. always visible? The idea is for the app to be run at the same time as main ...
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
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 ...