always-on-top

Set another program to always be on top?

∥☆過路亽.° 提交于 2020-05-12 02:56:26
问题 I'm looking for a way to make another windows applications window to stay 'on top'. Example: You have your program/script that is writing some data into an notepad window for the user to read. That notepad window stays on top of everything else while the user can "browse" around in the background without the notepad window highlighted and will still be able to read from it. So tkinters wm_attributes("-topmost", 1) wont work since it only affects a window I've created "from scratch". But it

Avoid application activation and focus in when clicking buttons on it - Windows API or Qt

試著忘記壹切 提交于 2020-01-11 08:48:07
问题 Situation: A border-less QDialog stays successfully on top of other applications. The problem is when clicking on this always-on-top application window, the following occurs: The clicked always-on-top application gets activated The clicked always-on-top application window steals the focus of previous active/focused app Is there a possibility that when clicking on this always-on-top inactive and unfocused application window, the current application does not loose activation and focus while

Frame always on top of my program only

怎甘沉沦 提交于 2020-01-09 11:09:51
问题 I'm trying to create a kind of toolbar in an undecorated alwaysOnTop frame. Thus, I want my frame to be on top of my main frame, but not on top of frames from other programs. I tried this code : public class Test { private static JFrame mainFrame; /** * @param args the command line arguments */ public static void main(String[] args) { SwingUtilities.invokeLater(new Runnable() { @Override public void run() { mainFrame = new JFrame("test"); mainFrame.setSize(800,600); mainFrame

User-Interface: Best way to toggle MDI frame's on-top status?

百般思念 提交于 2019-12-24 06:49:27
问题 I maintain an MFC (VC6) MDI application that uses Frame Windows as views for a document. There is only one document at a time but there are several MDI-Frames each with a different view of the document data. Recently a request came up to be able to keep one of those frame windows on top of the others while being able to interact with the background windows. One idea was to add a "pin-button" to the frame's title bar. During my research I found out that every implementation uses bitmaps

wxPython: Making a frame be on top of everything

妖精的绣舞 提交于 2019-12-23 18:13:05
问题 I want my frame to be always on top, but I want it to be really on top. I want no other windows to hide it, even if they are also "always on top". I'm using wx.STAY_ON_TOP and wx.FRAME_FLOAT_ON_PARENT , but still there are windows that appear on top of mine. Also, the taskbar appears on top of my frame, while I'd like it to be behind my frame. I've tried a lot of things that didn't work, detailed here. Any idea how to make my frame really on top? 回答1: Because their is no standard method in

Display a windowless Forms PictureBox, always on top

喜你入骨 提交于 2019-12-23 04:55:55
问题 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 application so that the picture boxes 'appear' as though they belong to main application but exist in a separate process. And, preferably the space between the displays remains clickable to the main app e.g.: --------------------- | -- | | | | <---------|------App.exe | -- | | | -- | | | | | <- |

Java 6, JFrame stuck alwaysontop

倖福魔咒の 提交于 2019-12-23 04:03:06
问题 This issue only seems to occur since I upgraded from 1.5 to 1.6 The main JFrame, randomly seems to get stuck infront of every other application in windows. Even another JDialog popping up set to alwaysontop(true) will be behind this main JFrame. Any ideas on what could be causing this issue? / Any ideas for solutions? Never had this issue before on Java 5. 回答1: Sorry guys it seems it was a program used as a screen splicer that was causing an issue with th Java program. Once the screen splicer

Java 6, JFrame stuck alwaysontop

做~自己de王妃 提交于 2019-12-23 04:02:32
问题 This issue only seems to occur since I upgraded from 1.5 to 1.6 The main JFrame, randomly seems to get stuck infront of every other application in windows. Even another JDialog popping up set to alwaysontop(true) will be behind this main JFrame. Any ideas on what could be causing this issue? / Any ideas for solutions? Never had this issue before on Java 5. 回答1: Sorry guys it seems it was a program used as a screen splicer that was causing an issue with th Java program. Once the screen splicer

How to make an activity window stay always on top

╄→гoц情女王★ 提交于 2019-12-22 05:24:24
问题 I want to create an activity that stays always on top (like the modal windows or task manager in Windows) of the others activities. How can I do this on Android? Thanks 回答1: You can't. As this is defined in the Android system. 回答2: You can use the following code in the overridden onStop method of your activity: @Override protected void onStop(){ super.onStop(); Intent intent = new Intent(this, ClassNameOfYourActivity.class); startActivity(intent); } Beauty problem: your activity will pop-up

Chrome Packaged app, Always on top window

喜你入骨 提交于 2019-12-18 12:09:20
问题 i am writing a text editor, i need the app window be always on top when switching to browser or e-book reader software. as i know ,for windows users, chrome doesn't provide any solution. is there any parameter to send when creating window to make window always on top? or can i provide any button in app to turn this feature on or off? Code i use to create window in bg.js: var launch = function () { chrome.app.window.create('index.html', { type: 'shell', width: 440, height: 680, minWidth: 440,