Exemplo n.º 1
0
        private void SaveOptionsToFile()
        {
            MainFormOptions options = new MainFormOptions();

            options.ShouldAutoClose = chkAutoClose.IsChecked.Value;

            UtilityCore.SaveOptions(options, FILE);
        }
Exemplo n.º 2
0
        private void LoadOptionsFromFile()
        {
            MainFormOptions options = UtilityCore.ReadOptions <MainFormOptions>(FILE) ?? new MainFormOptions();

            chkAutoClose.IsChecked = options.ShouldAutoClose ?? false;
        }
Exemplo n.º 3
0
        private void SaveOptionsToFile()
        {
            MainFormOptions options = new MainFormOptions();

            options.ShouldAutoClose = chkAutoClose.IsChecked.Value;

            UtilityCore.SaveOptions(options, FILE);
        }