示例#1
0
文件: Snip.cs 项目: ToppleTheNun/Snip
        private void ToolStripMenuItemExit_Click(object sender, EventArgs e)
        {
            Settings.Save();

            Application.Exit();
        }
示例#2
0
 private void Snip_FormClosing(object sender, FormClosingEventArgs e)
 {
     // Save settings automatically when the form is being closed.
     Settings.Save();
 }