Questions tagged [maximize-window]

This tag refers to the process of increasing the size of a UI window to its fullest, so that it takes up the entire screen.

134 questions
2
votes
2 answers

how to prevent none state form from being maximized in c#

i have created a form and set its FormBorderStyle property to none. when i press Windows + UP form will be Maximized. how can i prevent form from maximize? i tried private void logIn_Resize(object sender, EventArgs e) { …
2
votes
1 answer

WPF window is under top/left placed taskbar in Maximized state

I am working on WPF application and I faced problem that when WindowStyle=Noneand WindowState = WindowState.Maximized the application goes under top or left placed taskbar. When taskbar is placed bottom or right all works normal. I know about Left…
vasa911
  • 69
  • 3
  • 11
2
votes
0 answers

QDialog with Qt::WindowMaximizeButtonHint incorrect after calling exec the second time

I have a QDialog with a maximize button and a small test runner. main.cpp #include #include #include "MyDialog.h" int main(int argc, char** args) { QApplication app(argc, args); auto widget=new…
Aleph0
  • 5,816
  • 4
  • 29
  • 80
2
votes
3 answers

c# Form Minimize/Maximize Buttons gone?

On one of my forms the Minimize/Maximize Buttons are gone. The ControllBox is set to true as is the MaximizeBox and MinimizeBox. Is there some other setting I have missed?
Drago87
  • 105
  • 1
  • 11
2
votes
1 answer

Set wpf application screen height on secondary monitor on maximize

I want to set up different screen sizes for Different Monitors. Resolution primary - 1600*900, secondary - 1920*1080 My application is working fine on primary screen, but when i drag the application on secondary screen and maximize ,it maximize…
Vivek Malik
  • 165
  • 1
  • 10
2
votes
0 answers

JavaFX 8: Handling maximize request before it's actually done

I need to change effect of clicking maximize button of the stage, so it will be just put into another stage. But to achieve that, I need to handle maximize request before it's actually done. I tried this: stage.maximizedProperty().addListener(…
2
votes
0 answers

Stage will not stay maximized when changing scenes

I'm extremely new to programming. I'm using JavaFX and NetBeans IDE 8.0.2 to write a simple math program. I'm trying to change scenes in the same stage, and my code works but the stage will not stay maximized once the scenes have changed. I've tried…
James
  • 21
  • 2
2
votes
2 answers

wxpython EVT_MAXIMIZE restore

I want to handle the MAXIMIZE event. When maximizing it works just fine, but when I want to restore it does not even set the EVT_MAXIMIZE, even though the documentation says that this event is called when maximizing and restoring. I found that this…
user3176500
  • 389
  • 2
  • 6
  • 15
2
votes
3 answers

WPF window should not be moved,resized and should only contain minimize,close buttons

I'm trying to set up a WPF window. Window should be in maximized state always Window cannot be moved or resized It should contain minimize and close button but not maximize button I tried the following XAML code
Maria
  • 77
  • 5
  • 13
1
vote
1 answer

Maximized WPF RibbonWindow Hides Windows Taskbar

I have a WPF RibbonWindow which defaults to maximized. The problem is that if a user has their window's taskbar autohide, once it hides, it won't come back. Hovering over the bottom of the screen doesn't seem to trigger it. Any ideas what could…
KrisTrip
  • 4,943
  • 12
  • 55
  • 74
1
vote
1 answer

Maximize does not expand content to the top of the window [Windows MAUI]

I am trying to get a totally maximized Window with .NET Maui 8.0.0preview4, but an empty bar remains where the title-bar used to be. For the example, I've ammended the Maui template by making the "Click me" button toggle the window's maximized…
1
vote
1 answer

How do I maximize a form from an other form?

My program has two forms. At a certain point while running, both forms will be shown - one atop of the other. I want to be able to maximize the bottom form while focused on the front one. I played around a bit with TForm.BorderStyle := bsNone and…
Pickle
  • 33
  • 1
  • 7
1
vote
1 answer

Testcafe: Is there a way to maximize window from testcafe configuration file?

I am new to testcafe. I do not want to use maximizeWindow() over and over inside every test. Is there a way to have this feature to be used as part of the configuration file? Or a better solution that will prevent me using it inside every test.
Jacob
  • 11
  • 1
1
vote
1 answer

C#, when I maximize the form it moves to the top left

When I maximize the form, the form is positioned in the upper left and does not grow. I designed the minimize, maximize and exit buttons that I use. I set FormBorderStyle=None and FormStartPosition=CenterScreen. To maximize the window, I used the…
Manly
  • 61
  • 6
1
vote
0 answers

Anaconda Navigator 1.10.0 - Missing maximize opportunity on Ubuntu 20 (Focal Fossa) after upgrade it from 1.9.x version

After succesfull upgrade Anaconda Navigator from version 1.9.x to 1.10.0, I missed the so called 'maximize window' opportunity in the right top section of window (only the 'minimize' and 'close' window opportunities exists. It seems, all others are…
nagypup
  • 11
  • 3
1 2 3
8 9