Beispiel #1
0
        public ExtendedEnemySetInfoWindow(byte setID)
        {
            InitializeComponent();

            this.BackColor = (Color)Settings.Settings.BackgroundColour;
            this.ForeColor = (Color)Settings.Settings.TextColour;
            ColourTheme.SetColourScheme(this.Controls);

            var enemySet = Settings.Settings.ENEMYSETFile.GetSetHeaderByCenterDigiID(setID);

            SetCenterDigimonData(enemySet.DigimonInSet[0]);
            SetLeftDigimonData(enemySet.DigimonInSet[1]);
            SetRightDigimonData(enemySet.DigimonInSet[2]);
        }
Beispiel #2
0
        public MainWindow()
        {
            InitializeComponent();

            SetupClasses();

            OpenMapWindowButton_Click(null, null);
            this.BackColor = (Color)Settings.Settings.PanelBackgroundColour;
            this.ForeColor = (Color)Settings.Settings.TextColour;
            ColourTheme.SetColourScheme(this.Controls);

            ShowValuesAsHexToolStripMenuItem.Checked = (bool)Properties.Settings.Default["ShowValuesAsHex"];
            removeIDCapToolStripMenuItem.Checked     = (bool)Properties.Settings.Default["RemoveIDCap"];
        }