maximize-window

Expand (maximise) subplot figure temporarily — then collapse it back

独自空忆成欢 提交于 2019-12-04 09:10:43
Often in Matlab we would plot a figure with many subplot axes, but they are all tiny. In the prevalent UX paradigm, you would expect to be able to double-click such a small plot to have a closer look using the entire screen space. Typically this is the reason I avoid using subplot , but plot many individual figures instead — so I can move them around on the screen and double-click on their titlebars which (on Windows) maximises the figure to full screen. (Double-click again, and it returns to its normal size.) However, the advantage of subplot is that the set of plots is grouped in one panel.

How can I maximize the editor pane?

前提是你 提交于 2019-12-04 07:27:12
问题 In Eclipse, I can type Ctrl + M or click the maximize icon in the editor pane to make the editor pane take up the entire Eclipse window, and then again to restore the pane back to its previous size exposing the other panes. Is it possible to perform the equivalent in IntelliJ IDEA? To clarify, I'm asking about hiding all other tool panes to show only the editor pane. I'm not asking how to go to distraction-free mode, because this is mode is completely "full screen," hiding all toolbars,

Node-Webkit - Starting Maximized

 ̄綄美尐妖づ 提交于 2019-12-03 23:25:47
I don't want a fullscreen application, but I would like to start a Node-Webkit application maximized. Can this be done? I am guessing its something to do with package.json, but can't seem to find what needs to be done. I don't think the manifest has an option to do that. Instead, call nw's Window.maximize() on startup. Something like: // Load native UI library var ngui = require('nw.gui'); // Get the current window var nwin = ngui.Window.get(); Sometime later, in onload or some other point where you're ready to show the window: onload = function() { nwin.show(); nwin.maximize(); } This is

How to set a JavaFX Stage/Frame to Maximized

二次信任 提交于 2019-12-03 06:30:33
问题 I'm using JavaFX 2. I want my frame to open maximized but I'm not seeing a way. I searched a bit on the internet without success. For the stage I see setFullScreen() and setIconified() but I don't see anything like setMaximized() . 回答1: When evaluating the sourcecode of the Ensemble.jar provided with the samples of JavaFX 2.0 SDK, the currently valid way to achieve window maximizing is Screen screen = Screen.getPrimary(); Rectangle2D bounds = screen.getVisualBounds(); primaryStage.setX(bounds

How to set a JavaFX Stage/Frame to Maximized

陌路散爱 提交于 2019-12-02 20:07:38
I'm using JavaFX 2. I want my frame to open maximized but I'm not seeing a way. I searched a bit on the internet without success. For the stage I see setFullScreen() and setIconified() but I don't see anything like setMaximized() . When evaluating the sourcecode of the Ensemble.jar provided with the samples of JavaFX 2.0 SDK, the currently valid way to achieve window maximizing is Screen screen = Screen.getPrimary(); Rectangle2D bounds = screen.getVisualBounds(); primaryStage.setX(bounds.getMinX()); primaryStage.setY(bounds.getMinY()); primaryStage.setWidth(bounds.getWidth()); primaryStage

How can I maximize the editor pane?

混江龙づ霸主 提交于 2019-12-02 15:47:45
In Eclipse, I can type Ctrl + M or click the maximize icon in the editor pane to make the editor pane take up the entire Eclipse window, and then again to restore the pane back to its previous size exposing the other panes. Is it possible to perform the equivalent in IntelliJ IDEA? To clarify, I'm asking about hiding all other tool panes to show only the editor pane. I'm not asking how to go to distraction-free mode, because this is mode is completely "full screen," hiding all toolbars, window decorations, etc. The closest thing would be to hide all tool windows by invoking the Hide All Tool

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

假如想象 提交于 2019-12-02 13:48:12
问题 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) { this.WindowState = FormWindowState.Normal; } but its not that i want. with above code when i press Windows + Up form will maximize and then it restores to normal state. but i want to prevent it basically. 回答1: Setting the form's MaximizeBox to False should be enough to stop

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

匆匆过客 提交于 2019-12-02 06:08:11
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) { this.WindowState = FormWindowState.Normal; } but its not that i want. with above code when i press Windows + Up form will maximize and then it restores to normal state. but i want to prevent it basically. Setting the form's MaximizeBox to False should be enough to stop this Aero Snap feature. But Form.CreateParams calculates the wrong style flags for some mysterious reason. I

How to trigger the event associated with maximize in C#

核能气质少年 提交于 2019-12-01 21:22:22
Consider the following code: Window myWindow = new MyWindowSubclass(); myWindow.BringIntoView(); myWindow.Show(); // Code which is effective as pressing the maximize button Also, how to detect if the window is indeed in maximized state. In WPF, you can use the WindowState property: myWindow.WindowState = WindowState.Maximized; You can of course query that property to obtain the current window state: if (myWindow.WindowState == WindowState.Maximized) { // Window is currently maximized. } For WinForms, you can use bool maximized = this.WindowState == System.Windows.Forms.FormWindowState

How can i maximize a specific window through cmd?(windows)

流过昼夜 提交于 2019-11-30 19:49:59
I just wanna make a simple notepad .bat file that would maximize a specific process window. Is that possible? Start takes an argument to do that. START /MAX notepad.exe However, if it an already running instance, it is outside cmd 's control. If you want to maximize already running program/window you can try with windowMode.bat using its title (or a string that the title starts with) @echo off call windowMode -title "Notepad" -mode maximized or with its process id: @echo off call windowMode -pid 1313 -mode maximized 来源: https://stackoverflow.com/questions/14760518/how-can-i-maximize-a-specific