Winify – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Windows.Forms;
3 using Winify.Properties;
4 using Winify.Utilities;
5  
6 namespace Winify
7 {
8 public partial class SettingsForm : Form
9 {
10 #region Constructors, Destructors and Finalizers
11  
12 public SettingsForm()
13 {
14 InitializeComponent();
15 }
16  
17 #endregion
18  
19 #region Event Handlers
20  
21 private void CheckBox1_CheckedChanged(object sender, EventArgs e)
22 {
23 Settings.Default.LaunchOnBoot = ((CheckBox) sender).Checked;
24  
25 Miscellaneous.LaunchOnBootSet(Settings.Default.LaunchOnBoot);
26 }
27  
28 #endregion
29 }
30 }