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
0
votes
1 answer

Javafx: Change in-line css style during runtime

I am attempting to change the background image of a pane when the application is maximized. My background is set using in-line css. I've set up two different variables for the styling and an if statement. However, I'm not having any luck getting it…
ajkelsey
  • 3
  • 4
0
votes
1 answer

Initialize Form as Maximized in a Python FMX GUI App

I'm making an app in the DelphiFMX GUI Library for Python. I have a Form that is being created, but it's being created as a normal window. How do I create and maximize it immediately? It should start as maximized. This is my current code: from…
Shaun Roselt
  • 1,650
  • 5
  • 18
  • 44
0
votes
0 answers

Maximize Window to Have Client Area Just Fill Screen Issue (Windows 10, Win32 DLL)

First, if this isn't a great way to do this, PLEASE suggest better. I can't seem to find an exact solution to what must be a common desire (see post title). My approach was to trap the WM_PAINT message and check whether the window position is…
0
votes
3 answers

How to call maximize events manually

I am having one form, and I want that to load in the maximized state. How do I call the windows maximize event on form load?
Even
  • 391
  • 3
  • 8
  • 17
0
votes
1 answer

Starting AutoHotkey GUI min/max/hidden from OUTSIDE the script

You can start Windows programs minimized/maximized/hidden from outside the program. For example, from the command-line with start /max notepad or by setting the Run field for a shortcut in its Properties dialog. AutoHotkey also supports starting…
Synetech
  • 9,643
  • 9
  • 64
  • 96
0
votes
0 answers

When I Put my jFrame at Maximized Both And Not Resizable It Hides Taskbar But Its Good When I only Put it At Maximized Both

When I put my JFrame at Maximized Both and Not Resizable, it hides the taskbar, but it's good when I only put it at Maximized Both! Also there is a problem with setting the icon in the title bar. I tried every method available on the Internet, but…
0
votes
0 answers

Making a panel stretch to the size of the canvas and then back to its previous size like a "maximize" button in Unity

I've figured out how to make the maximize portion of this work using the aspect ratio built in function on a button to scale a panel up to the full size of the screen. Haven't been able to find anywhere how to get it to back down to its previous…
0
votes
0 answers

ModifyStyle to gray out maximize-button leads to disappearing button

I have a small application, where you can set, if maximize or minimize button is active or not/grayed out. if (!m_bActiveMaximizeButton) // Maximieren { this->ModifyStyle(WS_CAPTION|WS_MAXIMIZEBOX,0,0); …
0
votes
1 answer

How to maximize every `window.open` call in Electron?

I've known that we could use the following code to maximize the main window: const mainWindow = new BrowserWindow({...}) mainWindow.maximize() But what about the window.open calls from within the main window? How to maximize them as well? Using…
Wenfang Du
  • 8,804
  • 9
  • 59
  • 90
0
votes
1 answer

Maximize form but do not cover the taskbar

When I click the button to maximize my form, it covers the entire screen including the taskbar. I managed to find a solution and it works, I used my code in form load event but I cannot return the form into normal state. Private Sub…
MisterJ
  • 3
  • 1
  • 5
0
votes
1 answer

Maximize the pygame window without making it fullscreen

Is there a way to maximize the pygame window when intializing the window with set_mode without making it completely fulsscreen. I tried to get the required window_size by printing event.size, when VIDEORESIZE is called, which is (1920, 1017). But if…
Honn
  • 737
  • 2
  • 18
0
votes
0 answers

Winforms maximize's incorrectly on secondary monitor

When maximizing my c# winforms app I am seeing some inconsistency. If I have a smaller screen resolution on my primary monitor, maximizing the application will fill the screens working area on that screen, but not on a larger secondary monitor. For…
0
votes
1 answer

Maximize client window vertically to the half left of screen

How to configure a shortcut key in awesome to toggle a client window vertical maximization to the left half of the screen (snap to left)? Module awful.placement has an example that may help, but there is no mention on how to implement a toggle that…
Romildo
  • 545
  • 9
  • 20
0
votes
0 answers

Force a window to be always maximised

I have a WPF application that I want permanently maximised. The application starts off maximised and that's fine. I have set the ResizeMode="NoResize" and while this does prevent the window from being resized (by dragging the edges of the window), I…
komodosp
  • 3,316
  • 2
  • 30
  • 59
0
votes
1 answer

How to Maximize Screen from VBScript?

The web application that displays database information is much more readable in full-screen mode rather than a small window. Problem is, I cannot get the window to maximize from UFT/QTP. I've tried running the browser object from Wscript.Shell, but…
William Humphries
  • 541
  • 1
  • 10
  • 21
1 2 3
8 9