Exemplo n.º 1
0
        public OptionsForm(MainForm mainForm, IOptionsService optionsService)
            : base(mainForm, optionsService)
        {
            InitializeComponent();

            options             = optionsService.ReadOptions();
            this.optionsService = optionsService;

            MyInitializeComponent();
        }
Exemplo n.º 2
0
 private NextToMainForm(IOptionsService optionsService)
 {
     options = optionsService.ReadOptions();
 }
Exemplo n.º 3
0
 private void LoadOptions()
 {
     options = optionsService.ReadOptions();
 }