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.
Questions tagged [maximize-window]
134 questions
1
vote
1 answer
ExtJS, How to prevent window from being maximized
I have an ExtJS window component with maximize/minimize toggling button( top-right corner near the close button ).
I am trying to disable (or cancel) window maximizing functionality for some conditions.
Usually, most of the events have a preceding…

AlexPs801012
- 75
- 7
1
vote
1 answer
Maximizing a form, and disabling user to resize the form
I am trying to create a form that is maxed out, without allowing the user to resize it. I tried to maximize the FormWindowState, and remove the minimize and maximize button. By setting this.MimimumSize and this.MaximumSize to this.Size (the…

Luuk van Driel
- 39
- 5
1
vote
0 answers
Selenium driver not able to access some elements when maximized and minimized
Using selenium I am able to access some elements when browser is maximised and minimised
I tried with different add_argument options and found that elements are not accessible due to the size of…

NMAK
- 209
- 2
- 9
1
vote
2 answers
C# WPF Auto Resize Window When Taskbar Height Changed
I have a WPF window which has these properties:
-ResizeMode=NoResize
-WindowStyle=None
I made every functionality of a normal window but i can't figure out how can i make window auto resize itself(when it's maximized) when taskbar's height changes.…

Trax
- 943
- 2
- 12
- 30
1
vote
3 answers
Disable form restoring on title doubleclick
Create an empty Delphi VCL project
Remove all BorderIcons of main form
Set WindowState to wsMaximized
Run application. Main window appears maximized.
Double click on window title. Main window restores it's size and there is no possibility to…

Paul
- 25,812
- 38
- 124
- 247
1
vote
5 answers
Automatically Maximize Window Using Netbeans
I have been trying to get the window to automatically maximize using Netbeans.
I've probably looked through 4 or 5 pages of Google for an answer.
The web pages always provide something like this:
public void run() {
MyFrame myFrame = new…

JT White
- 517
- 4
- 9
- 21
1
vote
3 answers
Maximizing own window doesn't cover entire screen
So this is my code for maximizing my own window:
private void maximizeWindow(object sender, RoutedEventArgs e)
{
this.Width = SystemParameters.WorkArea.Width;
this.Height = SystemParameters.WorkArea.Height;
}
This is how the code…

plshm
- 288
- 3
- 20
1
vote
1 answer
VBA Workbook.Open Run-time error '91'
I want an Event-handling macros that maximizes the excel workbook and window on opening. I want this as a personal macro that would work on any of my workbooks. I currently have this:
Private Sub Workbook_Open()
Application.WindowState =…

mbuck
- 11
- 1
- 3
1
vote
1 answer
JavaFX permanently maximized window
As the title suggests, I want to make window in JavaFX and make it permanently maximized (i.e. fullscreen).
This is sample code that produces error... well, unexpected behavior.
public class Resize extends Application {
@Override
public…

Marebre8
- 143
- 1
- 1
- 15
1
vote
0 answers
Android app on Chromebook: How to get rid of "this app may not work when resized" message?
My Android app works on Chromebook and when maximizing the window it is running in, it properly resizes. Still, the Chromebook briefly shows up a popup message saying "this app may not work when resized". How do I suppress this message?

user3756504
- 127
- 6
1
vote
0 answers
Smooth playing of video in javafx. Any solution?
I am trying to play videos from a folder which will play continously in a cycle. The videos are playing continously but not smoothly I want it to play smoothly. I know where the problem is but I am not finding any suitabe solution on it. The…

PrB
- 33
- 4
1
vote
1 answer
Keep window maximized with AutoHotkey?
I have an AutoHotkey script that launches an application maximized like this:
`Run, myprogram.exe,, Max`
It then gets rid of the minimize and restore buttons. I can still click on the task bar and drag downwards to restore the window. Is there…

Questionmark
- 834
- 2
- 15
- 26
1
vote
1 answer
Is there a way to programmatically maximize/minimize WinRT application?
For win forms I can set the windowState to maximize my current window. What is the equivalent to maximize or minimize the winRT application window?
WinForm:
this.WindowState = FormWindowState.Maximized;

spspli
- 3,128
- 11
- 48
- 75
1
vote
0 answers
JavaFX Application with SwingNode doesn't maximise properly on some machines
I have a slightly complicated JavaFX GUI with the following component structure (simplified) as shown below. You will see that a SwingNode is used to contain the main bulk of the application, but I cannot tell you the design principle behind this…

Gaz
- 328
- 3
- 15
1
vote
1 answer
How to maximize browser window using WatiN?
I'm trying to maximize the browser window opened by WatiN:
var browser = new IE();
browser.SizeWindow(width, height);
but I don't know how to set width and height to my screen size.

Termininja
- 6,620
- 12
- 48
- 49