anything related to programming a function that a user would like to be non-scrollable and stay put on top of website, app, program etcetera
Questions tagged [stayontop]
24 questions
0
votes
0 answers
PyQt5: changing windowsflag from WindowStaysOnBottomHint to WindowStaysOnTopHint
WindowStaysOnBottomHint is a default option when running the program.
class WindowClass(QWidget, form_class):
def __init__(self):
super().__init__()
self.setupUi(self)
flags = Qt.WindowFlags(Qt.Tool |…

mmd
- 57
- 5
0
votes
1 answer
Make Android emulator stay on top Ubuntu 20.04
How do I make my Android Emulator (from Android Studio) stay on top?

Heinrich
- 340
- 1
- 4
- 12
0
votes
1 answer
How can I make a Java print dialog stay on top or non-modal? (Linux)
If I click on the main JFrame, the Java print dialog is hidden and input is blocked. I tried switching from PrinterJob printDialog() to ServiceUI.printDialog(). I also tried ServiceUIFactory factory = printService.getServiceUIFactory() but that…
0
votes
0 answers
wxPython: How to set wx.lib.sized_controls.SizedDialog to stay on top of other windows
I wrote a small code to test this:
import wx
import wx.lib.sized_controls as sc
class TestDialog(sc.SizedDialog):
def __init__(self, parent):
sc.SizedDialog.__init__(self, parent, title="dialog",
…

HuongOrchid
- 332
- 3
- 15
0
votes
1 answer
Workaround Qt bug Combobox dropdown appear behind window
Right now I have a small tool app that runs in the icon tray. When I click on the icon, the app goes into "windowstayontophint" mode. I added a Combo Box on this window. But when I click elsewhere on desktop, and then click the combo box, the drop…

GeneCode
- 7,545
- 8
- 50
- 85
0
votes
0 answers
Put Button on Top of Process Running in C# Form
I'm running a process in a form and need to cover part of the toolbar with a button. No matter what I do, if I click on the process the button falls behind. Could someone take a look at my code and offer any suggestions? Thanks!
namespace…
0
votes
0 answers
Vcl.Controls.TBalloonHint BringToFront?
In a Delphi XE2 program, a BalloonHint is partially hidden behind a window with AlwaysStayOnTop form style. So how can I bring the BalloonHint on top of the windows Z-order?

user1580348
- 5,721
- 4
- 43
- 105
-1
votes
1 answer
Splash window and always on top at the same time in pyqt4?
In pyqt4, I can use setWindowFlags(Qt.SplashScreen) so the window have no title bar.
And use setWindowFlags(Qt.WindowStaysOnTopHint) to make window always stays on top.
But what if I want them both? No title bar and stays on top at the same time.
Is…

dexter182
- 13
- 3
-1
votes
1 answer
Delphi: Modal form on a dll to a splash form
So, I have this virtual keyboard...
It's inside a dll, and based on a StayOnTop Modal form.
It's called by a function, that returns a WideString with the typed text.
This virtual keyboard has it's own TEdit where the user writes and see's what he's…

nunopicado
- 307
- 4
- 17