示例#1
0
文件: UI.cs 项目: isxGames/Daedalus
        private void UI_Load(object sender, EventArgs e)
        {
            Daedalus Daedalus = new Daedalus(this);

            double newValue = Settings.Default.movementRange;

            orbitTrackbar_Update(newValue);

            movementComboBox.SelectedIndex   = Settings.Default.movementIndex;
            propulsionComboBox.SelectedIndex = Settings.Default.propulsionIndex;
            targetingComboBox.SelectedIndex  = Settings.Default.targetingIndex;
        }
示例#2
0
        public Daedalus(UI Arg)
        {
            Instance = this;
            System.Media.SystemSounds.Asterisk.Play();

            DaedalusUI = Arg;

            Setup();
            AttachEvents();

            Start();
        }
示例#3
0
 private void UI_Load(object sender, EventArgs e)
 {
     Daedalus Daedalus = new Daedalus(this);
 }