mirror of
https://github.com/Crypto-Notepad/Crypto-Notepad.git
synced 2026-03-11 08:55:25 +00:00
25 lines
528 B
C#
25 lines
528 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Crypto_Notepad
|
|
{
|
|
public partial class WarningMsgBox : Form
|
|
{
|
|
Properties.Settings ps = Properties.Settings.Default;
|
|
|
|
public WarningMsgBox()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void button1_Click(object sender, EventArgs e)
|
|
{
|
|
if (checkBox1.Checked == true)
|
|
{
|
|
ps.WarningMsg = true;
|
|
ps.Save();
|
|
}
|
|
this.Close();
|
|
}
|
|
}
|
|
}
|