Ejemplo n.º 1
0
 public TI83PaletteConfig(ISettingsAdapter settable)
 {
     _settable = settable;
     _settings = (TI83Common.TI83CommonSettings)_settable.GetSettings();
     InitializeComponent();
     Icon = Properties.Resources.CalculateIcon;
 }
Ejemplo n.º 2
0
        private void DefaultsBtn_Click(object sender, EventArgs e)
        {
            var s = new TI83Common.TI83CommonSettings();

            BackgroundPanel.BackColor = Color.FromArgb((int)s.BGColor);
            ForeGroundPanel.BackColor = Color.FromArgb((int)s.ForeColor);
        }
Ejemplo n.º 3
0
 public TI83PaletteConfig(
     IMainFormForConfig mainForm,
     TI83Common.TI83CommonSettings settings)
 {
     _mainForm = mainForm;
     _settings = settings;
     InitializeComponent();
     Icon = Properties.Resources.CalculateIcon;
 }