Crypto-Notepad/Crypto Notepad/WarningMsgBox.cs
Sigmanor 28d4342b62 Added 2 improvements
Added warning message when open "Encrypt/Decrypt" tab;
Added "Reset to
defaults" button;
2016-01-10 14:37:37 +02:00

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();
}
}
}