Как закрыть форму windows forms

You need the actual instance of the WindowSettings that’s open, not a new one.

Currently, you are creating a new instance of WindowSettings and calling Close on that. That doesn’t do anything because that new instance never has been shown.

Instead, when showing DialogSettingsCancel set the current instance of WindowSettings as the parent.

Something like this:

In WindowSettings:

private void showDialogSettings_Click(object sender, EventArgs e)
{
    var dialogSettingsCancel = new DialogSettingsCancel();
    dialogSettingsCancel.OwningWindowSettings = this;
    dialogSettingsCancel.Show();
}

In DialogSettingsCancel:

public WindowSettings OwningWindowSettings { get; set; }

private void button1_Click(object sender, EventArgs e)
{
    this.Close();
    if(OwningWindowSettings != null)
        OwningWindowSettings.Close();
}

This approach takes into account, that a DialogSettingsCancel could potentially be opened without a WindowsSettings as parent.

If the two are always connected, you should instead use a constructor parameter:

In WindowSettings:

private void showDialogSettings_Click(object sender, EventArgs e)
{
    var dialogSettingsCancel = new DialogSettingsCancel(this);
    dialogSettingsCancel.Show();
}

In DialogSettingsCancel:

WindowSettings _owningWindowSettings;

public DialogSettingsCancel(WindowSettings owningWindowSettings)
{
    if(owningWindowSettings == null)
        throw new ArgumentNullException("owningWindowSettings");

    _owningWindowSettings = owningWindowSettings;
}

private void button1_Click(object sender, EventArgs e)
{
    this.Close();
    _owningWindowSettings.Close();
}

  1. Use the Close() Method to Close Form in C#
  2. Set the DialogResult Property in Windows Forms to Close Form in C#
  3. Use the Application.Exit Method to Exit the Application in C#
  4. Use the Environment.Exit Method to Exit the Application in C#
  5. Use the Form.Hide() Method to Hide Form in C#
  6. Use the Form.Dispose() Method to Dispose Form in C#
  7. Conclusion

Close Form in C#

Closing a form is a fundamental operation in C# application development. Whether you’re building a Windows Forms Application or a Windows Presentation Foundation (WPF) Application, understanding how to close a form correctly is crucial for maintaining your application’s integrity and user experience.

This tutorial will explore different methods for closing a form in C# and provide step-by-step explanations and working code examples for each method.

Use the Close() Method to Close Form in C#

The most straightforward way to close a form in C# is by using the Close() method. This method is inherited from the System.Windows.Forms.Form class and is available for Windows Forms and WPF applications.

Inside Form1, we have a button (closeButton) that, when clicked, calls this.Close() to close the form.

using System;
using System.Windows.Forms;

namespace close_form
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void closeButton_Click(object sender, EventArgs e)
        {
            this.Close();
        }

    }
}

In the above code, we closed the form in our Windows Forms application that only consists of one form with the Close() method in C#.

This method only closes a single form in our application. It can also close a single form in an application that consists of multiple forms.

Set the DialogResult Property in Windows Forms to Close Form in C#

In Windows Forms applications, you can use the DialogResult property to close a form and indicate a specific result to the caller. This is often used when the form acts as a dialog box or a modal form.

using System;
using System.Windows.Forms;

namespace DialogResultDemo
{
    public partial class MainForm : Form
    {
        public MainForm()
        {
            InitializeComponent();
        }

        private void okButton_Click(object sender, EventArgs e)
        {
            this.DialogResult = DialogResult.OK; // Set the DialogResult
            this.Close(); // Close the form
        }

        private void cancelButton_Click(object sender, EventArgs e)
        {
            this.DialogResult = DialogResult.Cancel; // Set the DialogResult
            this.Close(); // Close the form
        }
    }

    static class Program
    {
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            // Show the MainForm as a dialog
            if (new MainForm().ShowDialog() == DialogResult.OK)
            {
                MessageBox.Show("OK button clicked.");
            }
            else
            {
                MessageBox.Show("Cancel button clicked or form closed.");
            }
        }
    }
}

In the above code, we create a Windows Forms application with a form named MainForm containing two buttons (okButton and cancelButton). When the OK or Cancel button is clicked, we set the DialogResult property accordingly and then call this.Close() to close the form.

Use the Application.Exit Method to Exit the Application in C#

The Application.Exit() method is used to close the entire application in C#. This method informs all message loops to terminate execution and closes the application after all the message loops have terminated.

We can also use this method to close a form in a Windows Forms application if our application only consists of one form.

However, use this method with caution. It’s essential to make sure that it’s appropriate to exit the entire application at that point, as it can lead to unexpected behavior if other forms or processes need to be closed or cleaned up.

using System;
using System.Windows.Forms;

namespace close_form
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void exitButton_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }
    }
}

In the above code, when the Exit button is clicked, we call Application.Exit() to exit the entire application.

The drawback with this method is that the Application.Exit() method exits the whole application. So, if the application contains more than one form, all the forms will be closed.

Use the Environment.Exit Method to Exit the Application in C#

While it’s possible to close an application by calling Environment.Exit(0), it is generally discouraged.

This method forcefully terminates the application without allowing it to clean up resources or execute finalizers. It should only be used as a last resort when dealing with unhandled exceptions or critical issues.

using System;
using System.Windows.Forms;

namespace EnvironmentExitDemo
{
    public partial class MainForm : Form
    {
        public MainForm()
        {
            InitializeComponent();
        }

        private void exitButton_Click(object sender, EventArgs e)
        {
            Environment.Exit(0); // Forcefully exit the entire application
        }
    }
}

In the above code, when the Exit button is clicked, we call Environment.Exit(0) to forcefully exit the entire application. This should be used sparingly, as it does not allow proper cleanup.

Application.Exit() is specific to Windows Forms applications and provides a controlled, graceful exit, while Environment.Exit() is a general-purpose method that forcibly terminates the application without any cleanup or event handling.

Use the Form.Hide() Method to Hide Form in C#

Sometimes, you want to hide the form instead of closing it; you can use the Form.Hide() method to do this. The form remains in memory and can be shown again using this.Show() or this.Visible = true;.

using System;
using System.Windows.Forms;

namespace FormHideDemo
{
    public partial class MainForm : Form
    {
        public MainForm()
        {
            InitializeComponent();
        }

        private void hideButton_Click(object sender, EventArgs e)
        {
            this.Hide(); // Hide the form
        }

        private void showButton_Click(object sender, EventArgs e)
        {
            this.Show(); // Show the hidden form
        }
    }
}

In the above code, we create a Windows Forms application with a form named MainForm containing two buttons (hideButton and showButton).

When clicking the Hide button, we call this.Hide() to hide the form. When clicking the Show button, we call this.Show() to show the hidden form.

Use the Form.Dispose() Method to Dispose Form in C#

You can explicitly dispose of a form and release its resources using the Form.Dispose() method. It should be used when you explicitly want to release resources associated with the form, but it does not close its window.

using System;
using System.Windows.Forms;

namespace FormDisposeDemo
{
    public partial class MainForm : Form
    {
        public MainForm()
        {
            InitializeComponent();
        }

        private void disposeButton_Click(object sender, EventArgs e)
        {
            this.Dispose(); // Dispose of the form
        }
    }
}

In the above code, when clicking the Dispose button, we call this.Dispose() to explicitly dispose of the form. This should be used when you want to release resources associated with the form.

Conclusion

Closing a form in C# involves several methods and considerations, depending on your application’s requirements. We have explored various methods, including using the Close() method, setting the DialogResult property, exiting the application, hiding the form, and disposing of the form.

Choosing the right method depends on your specific use case. Understanding when and how to use each method is crucial to ensure your application behaves as expected and provides a seamless user experience.

By mastering form closure techniques in C#, you can develop robust and user-friendly applications that meet the needs of your users while maintaining code integrity and resource management.

Kotyara0live

34 / 28 / 27

Регистрация: 23.02.2016

Сообщений: 367

1

Как закрыть форму?

18.09.2017, 17:10. Показов 71371. Ответов 12

Метки нет (Все метки)


Студворк — интернет-сервис помощи студентам

Привет, вот немного освоил основы и перешел к forms , может кто подсказать как сделать так что бы после успешной операции пропадали/закрывались и вызывали новые forms
вот код

C#
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
 
        private void Form1_Load(object sender, EventArgs e)
        {
 
        }
      //поверяем правильный ли пароль или нет 
        private void button1_Click(object sender, EventArgs e)
        {
            if (textBox1.Text == "login" && textBox2.Text == "23")
                MessageBox.Show("God");
 // если все ок , то кнопка проверить , ввода пароля и логина должна пропасть 
            else
                MessageBox.Show("Bed");
        }
 
        private void textBox1_TextChanged(object sender, EventArgs e)
        {
 
        }
 
        private void textBox2_TextChanged(object sender, EventArgs e)
        {
 
        }



0



Programming

Эксперт

94731 / 64177 / 26122

Регистрация: 12.04.2006

Сообщений: 116,782

18.09.2017, 17:10

Ответы с готовыми решениями:

Закрыть 2 форму при этом не закрыть весь проект
Нужна помощь!!! как сделать так что бы в 1 форме выходила 2 а после,2 форма закрывалась при нажатии…

Как закрыть форму?
Я создал форму на ней расположил кнопку,потом добавил еще одну форму и при нажатии на кнопку,я…

Как закрыть форму
Здравствуйте.
Нужно создать несколько форм. Одна из форм есть навигационная на другие формы.
То…

Как закрыть форму
Добрый день,скажите пожалуйста.
Как организовать закрытие формы по нажатию кнопки button1.?
Есть…

12

student203

4 / 4 / 3

Регистрация: 25.03.2017

Сообщений: 180

Записей в блоге: 2

18.09.2017, 17:58

2

C#
1
Application.Exit();

закрывает программу …

C#
1
this.Close();

закрывает окно

C#
1
2
Form1 form = new Form2();
form.Show();

присваевает и открывает новое окно
чтобы создать новое окно , надо зайти в обозреватель решений , тыкнуть правой кнопкой мышки на название программы и выбрать пункт добавить -> форма windows..
вроде объяснил



2



34 / 28 / 27

Регистрация: 23.02.2016

Сообщений: 367

18.09.2017, 18:19

 [ТС]

3

Цитата
Сообщение от student203
Посмотреть сообщение

вроде объяснил

да вроде даже что то понял :Р
а вот по дизайну нужно все заново настраивать ?)



0



4 / 4 / 3

Регистрация: 25.03.2017

Сообщений: 180

Записей в блоге: 2

18.09.2017, 18:22

4

да нет) просто создаешь второе окно , оно не портит дизайн первого ..



0



Kotyara0live

34 / 28 / 27

Регистрация: 23.02.2016

Сообщений: 367

18.09.2017, 18:30

 [ТС]

5

Цитата
Сообщение от student203
Посмотреть сообщение

C#
1
2
Form1 form = new Form2();
form.Show();

что то не работает



0



student203

4 / 4 / 3

Регистрация: 25.03.2017

Сообщений: 180

Записей в блоге: 2

18.09.2017, 18:34

6

C#
1
2
  Form form = new Form2(); //form-название //Form2-название формы которую ты создал
            form.Show();//открыть окно с название form

Миниатюры

Как закрыть форму?
 



0



34 / 28 / 27

Регистрация: 23.02.2016

Сообщений: 367

18.09.2017, 18:47

 [ТС]

7

разобрался
еще 1 вопрос хочу закрыть окно с логином и паролем ,а оно закрывает 2 окна (то что создал)

Цитата
Сообщение от student203
Посмотреть сообщение

this.Close();



0



student203

4 / 4 / 3

Регистрация: 25.03.2017

Сообщений: 180

Записей в блоге: 2

18.09.2017, 19:42

8

C#
1
2
   form.ShowDialog();
            this.Close();

вот так



0



Kotyara0live

34 / 28 / 27

Регистрация: 23.02.2016

Сообщений: 367

18.09.2017, 21:09

 [ТС]

9

Цитата
Сообщение от student203
Посмотреть сообщение

C#
1
2
form.ShowDialog();
this.Close();

неа



0



4 / 4 / 3

Регистрация: 25.03.2017

Сообщений: 180

Записей в блоге: 2

18.09.2017, 23:04

10

у меня все работает … странно , скинь свой код



0



Kotyara0live

34 / 28 / 27

Регистрация: 23.02.2016

Сообщений: 367

19.09.2017, 11:32

 [ТС]

11

Цитата
Сообщение от student203
Посмотреть сообщение

у меня все работает … странно , скинь свой код

C#
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
namespace FReg
{
 
    public partial class Form1 : Form
    {
        Form form = new Form2();
        public Form1()
        {
            
            InitializeComponent();
        }
 
        private void Form1_Load(object sender, EventArgs e)
        {
 
        }
 
        private void button1_Click(object sender, EventArgs e)
        {
            this.Close();
            form.Show();
            
 
        }
    }
}



0



Даценд

Эксперт .NET

5868 / 4745 / 2940

Регистрация: 20.04.2015

Сообщений: 8,361

19.09.2017, 12:22

12

Kotyara0live,
здесь this.Close(); закрывает главную форму, что приводит к закрытию приложения целиком.
Попробуйте так:

C#
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public partial class Form1 : Form
{
 
    public Form1()
    {
        InitializeComponent();
    }
 
    private void Form1_Load(object sender, EventArgs e)
    {
        Form2 form2 = new Form2(); //создаем объект класса 2-й формы (авторизация, например)
        if (form2.ShowDialog() != DialogResult.OK) //отображаем и ждем результата. Если результат не OK, то закрываем приложение иначе видим главную форму
            this.Close();
    }
}

2-я форма должна вернуть DialogResult.OK, если правильно введен пароль.



1



34 / 28 / 27

Регистрация: 23.02.2016

Сообщений: 367

19.09.2017, 14:10

 [ТС]

13

Цитата
Сообщение от Даценд
Посмотреть сообщение

2-я форма должна вернуть DialogResult.OK, если правильно введен пароль.

все работает )
я правильно понял что form1 всегда главное окно ?
не по теме но все-же .. в инете мало понятной инфы по Form может есть какой то ресурс , задавать всегда вопросы тоже не вариант



0



Стандартные способы:

  • кликнуть в правом верхнем углу красную кнопку «крестик»
  • комбинация клавиш Alt+F4
  • кликнуть правой кнопкой мыши в верхнем левом углу, выбрать из контекстного меню «Закрыть»

Не стандартные способы:

  • с помощью красной кнопки «крестик» с использованием окна сообщения
  • через созданную кнопку
  • через созданную кнопку с использованием окна сообщения

с помощью красной кнопки «крестик» с использованием окна сообщения

Пользователь пытается закрыть программу стандартным способом, кликает на верхнюю правую кнопку «крестик», нажимает комбинацию клавиш Alt+F4 или в левом верхнем углу вызывает контекстное меню формы. Но программа сразу не закрывается, а появляется окно сообщения, в котором нужно подтвердить решение закрытия.
Событие FormClosingEventArgs принимает параметр «е». Этот параметр имеет свойство Cancel. Если установить его в false, форма закроется, если в true — останется открытой.

Скрыть

Показать

Копировать

  Form1.cs  

  • using System;
  • using System.Collections.Generic;
  • using System.ComponentModel;
  • using System.Data;
  • using System.Drawing;
  • using System.Linq;
  • using System.Text;
  • using System.Threading.Tasks;
  • using System.Windows.Forms;
  •  
  • namespace _0006 {
  •  public partial class Form1 : Form {
  •   public Form1() {
  •    InitializeComponent();
  •   }
  •  
  •   private void Form1_FormClosing(object sender, FormClosingEventArgs e) {
  •    DialogResult dialog = MessageBox.Show(
  •     "Вы действительно хотите выйти из программы?",
  •     "Завершение программы",
  •     MessageBoxButtons.YesNo,
  •     MessageBoxIcon.Warning
  •    );
  •    if(dialog == DialogResult.Yes) {
  •     e.Cancel = false;
  •    }
  •    else {
  •     e.Cancel = true;
  •    }
  •   }
  •  }
  • }

через созданную кнопку

Метод Close() в родительской форме закрывает все приложение.
Метод Close() в дочерних формах закрывает только дочернюю форму.
Метод Application.Exit() закрывает приложение, если вызывается как из родительской формы, так и из дочерних форм.

Скрыть

Показать

Копировать

  Form1.cs  

  • using System;
  • using System.Collections.Generic;
  • using System.ComponentModel;
  • using System.Data;
  • using System.Drawing;
  • using System.Linq;
  • using System.Text;
  • using System.Threading.Tasks;
  • using System.Windows.Forms;
  •  
  • namespace _0007 {
  •  public partial class Form1 : Form {
  •   public Form1() {
  •    InitializeComponent();
  •   }
  •  
  •   private void button1_Click(object sender, EventArgs e) {
  •    this.Close();
  •    
  •   }
  •  }
  • }

через созданную кнопку с использованием окна сообщения

В этом примере мы добавим кнопку на форму, которая будет закрывать приложение. Но при нажатии на кнопку будет вызвано окно сообщений.

Скрыть

Показать

Копировать

  Form1.cs  

  • using System;
  • using System.Collections.Generic;
  • using System.ComponentModel;
  • using System.Data;
  • using System.Drawing;
  • using System.Linq;
  • using System.Text;
  • using System.Threading.Tasks;
  • using System.Windows.Forms;
  •  
  • namespace _0008 {
  •  public partial class Form1 : Form {
  •   public Form1() {
  •    InitializeComponent();
  •   }
  •  
  •   private void button1_Click(object sender, EventArgs e) {
  •    DialogResult dialog = MessageBox.Show(
  •     "Вы действительно хотите выйти из программы?",
  •     "Завершение программы",
  •     MessageBoxButtons.YesNo,
  •     MessageBoxIcon.Warning
  •    );
  •    if(dialog == DialogResult.Yes) {
  •     this.Close();
  •     
  •    }
  •   }
  •  }
  • }

I have an exit button on a winform that I want to use to close the program. I have added the button name to the FormClosed property found in the events section of the winforms properties. I thought that’s all I had to do but when I click the button it does not close. I looked at the code and while a handler is created, there is no code inside of it. I don’t know if that is correct or not. Here is the code that was created in the Form.cs file:

private void btnExitProgram_Click(object sender, EventArgs e)
    {

    }

What else do I have to do?

neontapir's user avatar

neontapir

4,6983 gold badges37 silver badges52 bronze badges

asked Mar 6, 2012 at 15:29

Programming Newbie's user avatar

2

this.Close();

Closes the form programmatically.

answered Mar 6, 2012 at 15:31

bschultz's user avatar

1

Remove the method, I suspect you might also need to remove it from your Form.Designer.

Otherwise: Application.Exit();

Should work.

That’s why the designer is bad for you. :)

Simple Sandman's user avatar

answered Mar 6, 2012 at 15:34

Thomas Lindvall's user avatar

1

The FormClosed Event is an Event that fires when the form closes. It is not used to actually close the form. You’ll need to remove anything you’ve added there.

All you should have to do is add the following line to your button’s event handler:

this.Close();

answered Mar 6, 2012 at 15:32

Justin Niessner's user avatar

Justin NiessnerJustin Niessner

243k40 gold badges408 silver badges536 bronze badges

1

We can close every window using Application.Exit();
Using this method we can close hidden windows also.

private void btnExitProgram_Click(object sender, EventArgs e)
{
Application.Exit();
}

answered Jun 1, 2017 at 9:20

E J Chathuranga's user avatar

Put this little code in the event of the button:

this.Close();

answered Mar 6, 2012 at 15:32

Abbas's user avatar

AbbasAbbas

14.2k6 gold badges41 silver badges72 bronze badges

0

Try this:

private void btnExitProgram_Click(object sender, EventArgs e) {
    this.Close();
}

answered Mar 6, 2012 at 15:32

juergen d's user avatar

juergen djuergen d

202k37 gold badges294 silver badges362 bronze badges

0

Used Following Code

System.Windows.Forms.Application.Exit( ) 

answered Dec 9, 2020 at 18:44

Ghotekar Rahul's user avatar

In Visual Studio 2015, added this to a menu for File -> Exit and in that handler put:

this.Close();

but the IDE said ‘this’ was not necessary. Used the IDE suggestion with just Close(); and it worked.

answered Jan 13, 2016 at 17:53

Brad Rogers's user avatar

Brad RogersBrad Rogers

892 silver badges12 bronze badges

If you only want to Close the form than you can use this.Close();
else if you want the whole application to be closed use Application.Exit();

answered Oct 23, 2016 at 16:48

Anayetullah's user avatar

You can also do like this:

private void button2_Click(object sender, EventArgs e)
{
    System.Windows.Forms.Application.ExitThread();
}

Sami Ahmed Siddiqui's user avatar

answered Oct 4, 2019 at 6:27

Renz Macawili's user avatar

  • Как закрыть окно без мышки на компьютере windows
  • Как залить образ windows 10 на флешку
  • Как закрыть зависшее приложение windows 10
  • Как закрыть пуск в windows 10
  • Как залезть в реестр windows