Windows forms minimize form

Form. Minimize Box Свойство

Определение

Получает или задает значение, указывающее, отображается ли кнопка Свернуть в строке заголовка формы. Gets or sets a value indicating whether the Minimize button is displayed in the caption bar of the form.

Значение свойства

true для вывода кнопки сворачивания для формы; в противном случае — false . true to display a Minimize button for the form; otherwise, false . Значение по умолчанию — true . The default is true .

Примеры

В следующем примере создается новый экземпляр класса Form и вызывается ShowDialog метод для вывода формы в виде диалогового окна. The following example creates a new instance of a Form and calls the ShowDialog method to display the form as a dialog box. В примере задаются FormBorderStyle AcceptButton свойства,, CancelButton ,, MinimizeBox MaximizeBox и, StartPosition чтобы изменить внешний вид и функциональность формы на диалоговое окно. The example sets the FormBorderStyle, AcceptButton, CancelButton, MinimizeBox, MaximizeBox, and StartPosition properties to change the appearance and functionality of the form to a dialog box. В примере также используется Add метод Controls коллекции формы для добавления двух Button элементов управления. The example also uses the Add method of the form’s Controls collection to add two Button controls. В примере свойство используется HelpButton для вывода кнопки справки в строке заголовка диалогового окна. The example uses the HelpButton property to display a help button in the caption bar of the dialog box.

How to automatically minimize my Windows Form Application (C#)?

I am creating a basic Windows Form Application. If I run my project (program start), how can I set my form to automatically minimize when a user doesn’t interact with my form?

For example, when you watch some youtube video in full screen, it will display the bar player, when user doesn’t do or move anything inside the player, the bar player will automatically hidden.

So, how can I create something similar like this? And how does it do that?

3 Answers 3

Here is simple example.

You can minimize From by set property WindowState to FormWindowState.Minimized .

To handle time when Form minimizes use Timer . On Tick event compare current time of the Timer to yours defined time. On user interrupt (input events as MouseMove, MouseClick, KeyPress, or you can choose just some of them) reset time to 0.

You could define a timer which calls your hiding operation after for instance 15 seconds. Then you attach eventhandlers for MouseMove, MouseClick and KeyPressed to your form. Every time such an event occurs, it resets your timer.

You can do it in following way:

I hope this will help you. 🙂

Not the answer you’re looking for? Browse other questions tagged c# visual-studio or ask your own question.

Linked

Hot Network Questions

Subscribe to RSS

To subscribe to this RSS feed, copy and paste this URL into your RSS reader.

site design / logo © 2021 Stack Exchange Inc; user contributions licensed under cc by-sa. rev 2021.4.16.39093

By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy.

Читайте также:  Getting directory size linux

Windows forms minimize form

This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.

Answered by:

Question

I need to know when the maximize or minimize button has been clicked. I am saving the window state so it is in the same state as when the user closed the app. Anyone know how to do this?

Answers

private void Form1_Resize( object sender, EventArgs e)

if ( this .WindowState == FormWindowState .Minimized)

MessageBox .Show( this .WindowState.ToString());

He doesn’t need to trap any event. after would be preferable, as he only needs the state or size (hard to tell the way the question is worded)

(moving to windows forms forums)

The correct way to do so is this:

protected override void WndProc( ref Message m )
<
if ( m.Msg == 0x0112 ) // WM_SYSCOMMAND
<
if( m.WParam == new IntPtr( 0xF020 ) ) // SC_MINIMIZE
<
// do stuff here
>
m.Result = new IntPtr( 0 );
>

base.WndProc( ref m );
>

Check the file winuser.h that is somewhere in the visual studio folders, and also find the value for SC_MAXIMIZE.

Cablehead’s suggestion is almost right, but not entirely: when responding to the Resize event, you could check the WindowState property for Minimized, but that is too late: the resize event will be raised once the window is minimized.

Disabling Minimize & Maximize On WinForm?

WinForms have those three boxes in the upper right hand corner that minimize, maximize, and close the form. What I want to be able to do is to remove the minimize and maximize, while keeping the close.

I also what to make the close minimize the form instead of closing it.

How can this be done?

7 Answers 7

The Form has two properties called MinimizeBox and MaximizeBox , set both of them to false .

To stop the form closing, handle the FormClosing event, and set e.Cancel = true; in there and after that, set WindowState = FormWindowState.Minimized; , to minimize the form.

Bind a handler to the FormClosing event, then set e.Cancel = true , and set the form this.WindowState = FormWindowState.Minimized .

If you want to ever actually close the form, make a class-wide boolean _close and, in your handler, set e.Cancel to !_close , so that whenever the user clicks the X on the window, it doesn’t close, but you can still close it (without just killing it) with close = true; this.Close();

(And just to make my answer complete) set MaximizeBox and MinimizeBox form properties to False .

Set MaximizeBox and MinimizeBox form properties to False

Right Click the form you want to hide them on, choose Controls -> Properties.

In Properties, set

  • Control Box -> False
  • Minimize Box -> False
  • Maximize Box -> False

You’ll do this in the designer.

How to make form minimize when closing was already answered, but how to remove the minimize and maximize buttons wasn’t.
FormBorderStyle : FixedDialog
MinimizeBox : false
MaximizeBox : false

you can simply disable maximize inside form constructor.

Как расположить форму и изменить ее размер (Windows Forms .NET) How to position and size a form (Windows Forms .NET)

При создании формы размер и расположение изначально задаются как значения по умолчанию. When a form is created, the size and location is initially set to a default value. Размер формы по умолчанию обычно имеет ширину и высоту 800 x 500 пикселей. The default size of a form is generally a width and height of 800×500 pixels. Начальное расположение, отображаемое при отображении формы, зависит от нескольких различных параметров. The initial location, when the form is displayed, depends on a few different settings.

Изменить размер формы можно во время разработки с помощью Visual Studio, а также во время выполнения с помощью кода. You can change the size of a form at design time with Visual Studio, and at run time with code.

Документация для Руководства по рабочему столу по .NET 5 (и .NET Core) находится в разработке. The Desktop Guide documentation for .NET 5 (and .NET Core) is under construction.

Изменение размера с помощью конструктора Resize with the designer

После добавления новой формы в проект размер формы задается двумя разными способами. After adding a new form to the project, the size of a form is set in two different ways. Во-первых, для него можно задать маркеры изменения размера в конструкторе. First, you can set it is with the size grips in the designer. Перетаскивая правый край, нижний край или угол, можно изменить размер формы. By dragging either the right edge, bottom edge, or the corner, you can resize the form.

Второй способ изменения размера формы — в конструкторе на панели «Свойства». The second way you can resize the form while the designer is open, is through the properties pane. Выберите форму, а затем найдите панель Свойства в Visual Studio. Select the form, then find the Properties pane in Visual Studio. Прокрутите вниз до раздела Размер и разверните его. Scroll down to size and expand it. Можно вручную задать параметры Ширина и Высота. You can set the Width and Height manually.

Изменение размера в коде Resize in code

Несмотря на то, что начальный размер формы задается в конструкторе, его можно изменить с помощью кода. Even though the designer sets the starting size of a form, you can resize it through code. Использование кода для изменения размера формы полезно, когда в каком-либо приложении размера формы по умолчанию недостаточно. Using code to resize a form is useful when something about your application determines that the default size of the form is insufficient.

Чтобы изменить размер формы, измените свойство Size, которое представляет ширину и высоту формы. To resize a form, change the Size, which represents the width and height of the form.

Изменение размера текущей формы Resize the current form

Размер текущей формы можно изменить, пока код выполняется в контексте формы. You can change the size of the current form as long as the code is running within the context of the form. Например, если имеется Form1 с кнопкой, то при нажатии на нее вызывается обработчик событий Click для изменения размера формы: For example, if you have Form1 with a button on it, that when clicked invokes the Click event handler to resize the form:

Изменение размера другой формы Resize a different form

Размер другой формы можно изменить после ее создания с помощью переменной, ссылающейся на форму. You can change the size of another form after it’s created by using the variable referencing the form. Например, предположим, что у вас есть две формы: Form1 (начальная форма в этом примере) и Form2 . For example, let’s say you have two forms, Form1 (the startup form in this example) and Form2 . В Form1 имеется кнопка, которая при нажатии вызывает событие Click . Form1 has a button that when clicked, invokes the Click event. Обработчик этого события создает новый экземпляр формы Form2 , задает размер, а затем отображает его: The handler of this event creates a new instance of the Form2 form, sets the size, and then displays it:

Если свойство Size не задано вручную, размер формы по умолчанию — это размер, заданный во время разработки. If the Size isn’t manually set, the form’s default size is what it was set to during design-time.

Расположение с помощью конструктора Position with the designer

При создании и отображении экземпляра формы начальное расположение формы определяется свойством StartPosition. When a form instance is created and displayed, the initial location of the form is determined by the StartPosition property. Свойство Location содержит текущее положение в форме. The Location property holds the current location the form. Оба свойства можно задать с помощью конструктора. Both properties can be set through the designer.

Перечисление FormStartPosition FormStartPosition Enum Описание Description
CenterParent CenterParent Форма располагается в центре родительской формы. The form is centered within the bounds of its parent form.
CenterScreen CenterScreen Форма располагается по центру текущего экрана. The form is centered on the current display.
Вручную Manual Положение формы определяется свойством Расположение. The position of the form is determined by the Location property.
WindowsDefaultBounds WindowsDefaultBounds Форма размещается в расположении Windows по умолчанию и ее размер подгоняется под размер по умолчанию, который определен Windows. The form is positioned at the Windows default location and is resized to the default size determined by Windows.
WindowsDefaultLocation WindowsDefaultLocation Форма размещается в расположении Windows по умолчанию и не изменяется. The form is positioned at the Windows default location and isn’t resized.

Значение CenterParent работает только с формами, которые являются либо дочерними формами многодокументного интерфейса (MDI), либо обычными формами, отображаемыми с помощью метода ShowDialog. The CenterParent value only works with forms that are either a multiple document interface (MDI) child form, or a normal form that is displayed with the ShowDialog method. CenterParent не влияет на обычную форму, которая отображается с помощью метода Show. CenterParent has no affect on a normal form that is displayed with the Show method. Чтобы разместить форму по центру (переменная form ) другой формы (переменная parentForm ), используйте следующий код: To center a form ( form variable) to another form ( parentForm variable), use the following code:

Расположение с помощью кода Position with code

Несмотря на то, что для задания начального расположения формы можно использовать конструктор, изменить режим начальной позиции или задать расположение вручную можно с помощью кода. Even though the designer can be used to set the starting location of a form, you can use code either change the starting position mode or set the location manually. Использование кода для расположения формы полезно, если необходимо вручную разместить форму и изменить ее размер относительно экрана или других форм. Using code to position a form is useful if you need to manually position and size a form in relation to the screen or other forms.

Перемещение текущей формы Move the current form

Переместить текущую форму можно, пока код выполняется в контексте формы. You can move the current form as long as the code is running within the context of the form. Например, если имеется Form1 с кнопкой, то при нажатии на нее вызывается обработчик событий Click . For example, if you have Form1 with a button on it, that when clicked invokes the Click event handler. Обработчик в этом примере изменяет расположение формы на верхнюю левую часть экрана путем задания свойства Location: The handler in this example changes the location of the form to the top-left of the screen by setting the Location property:

Расположение другой формы Position a different form

Расположение другой формы можно изменить после ее создания с помощью переменной, ссылающейся на форму. You can change the location of another form after it’s created by using the variable referencing the form. Например, предположим, что у вас есть две формы: Form1 (начальная форма в этом примере) и Form2 . For example, let’s say you have two forms, Form1 (the startup form in this example) and Form2 . В Form1 имеется кнопка, которая при нажатии вызывает событие Click . Form1 has a button that when clicked, invokes the Click event. Обработчик этого события создает новый экземпляр формы Form2 и задает ее размер: The handler of this event creates a new instance of the Form2 form and sets the size:

Если свойство Size не задано, размер формы по умолчанию — это размер, заданный во время разработки. If the Size isn’t set, the form’s default size is what it was set to at design-time.

Читайте также:  Use windows under linux
Оцените статью