Esempio n. 1
0
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     VisibleChanged += Heroes_VisibleChanged;
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
Esempio n. 2
0
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     VisibleChanged += Heroes_VisibleChanged;
     this.Anchor     = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
Esempio n. 3
0
        private void button3_Click(object sender, EventArgs e)
        {
            // Open new bot wizard
            var wm = new Wizard.WizardMain {
                TopMost = true
            };

            wm.Show();
        }
Esempio n. 4
0
        private void editToolStripMenuItem_Click(object sender, EventArgs e)
        {// Edit bot
            var wm = new Wizard.WizardMain(dataGridView1.CurrentRow.Index)
            {
                TopMost = true
            };

            wm.Show();
        }
Esempio n. 5
0
        public ProfileSchedule(WizardMain parent)
        {
            WM = parent;
            InitializeComponent();

            dataGridView1.CellClick += dataGridView1_CellClick;
            dataGridView1.CellValueChanged += dataGridView1_CellValueChanged;

            this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
        }
Esempio n. 6
0
 private void btnNew_Click(object sender, EventArgs e)
 {
     lock (BotSettings.Instance)
     {
         // Open new bot wizard
         var wm = new Wizard.WizardMain {
             TopMost = true
         };
         wm.ShowDialog();
     }
 }
Esempio n. 7
0
        private void button4_Click(object sender, EventArgs e)
        {
            // Edit bot
            if (dataGridView1.CurrentRow == null || dataGridView1.CurrentRow.Index < 0)
            {
                return;
            }
            var wm = new Wizard.WizardMain(dataGridView1.CurrentRow.Index)
            {
                TopMost = true
            };

            wm.Show();
        }
        public ProfileSchedule(WizardMain parent)
        {
            WM = parent;
            InitializeComponent();

            var col = new DataGridViewComboBoxColumn
            {
                Name = "Monster Power",
                DataSource = Enum.GetValues(typeof(MonsterPower)),
                ValueType = typeof(MonsterPower),
            };
            dataGridView1.Columns.Add(col);

            dataGridView1.CellClick += new DataGridViewCellEventHandler(dataGridView1_CellClick);
            dataGridView1.CellValueChanged += new DataGridViewCellEventHandler(dataGridView1_CellValueChanged);
        }
Esempio n. 9
0
        private void btnEdit_Click(object sender, EventArgs e)
        {
            lock (BotSettings.Instance)
            {
                // Edit bot
                if (dataGridView1.CurrentRow == null || dataGridView1.CurrentRow.Index < 0)
                {
                    return;
                }
                var wm = new Wizard.WizardMain(dataGridView1.CurrentRow.Index)
                {
                    TopMost = true
                };

                wm.ShowDialog();
            }
        }
        public ProfileSchedule(WizardMain parent)
        {
            WM = parent;
            InitializeComponent();

            var col = new DataGridViewComboBoxColumn
            {
                Name       = "Monster Power",
                DataSource = Enum.GetValues(typeof(MonsterPower)),
                ValueType  = typeof(MonsterPower),
            };

            dataGridView1.Columns.Add(col);

            dataGridView1.CellClick        += dataGridView1_CellClick;
            dataGridView1.CellValueChanged += dataGridView1_CellValueChanged;
        }
        public ProfileSchedule(WizardMain parent)
        {
            WM = parent;
            InitializeComponent();

            var col = new DataGridViewComboBoxColumn
            {
                Name = "Difficulty",
                DataSource = Enum.GetValues(typeof(Difficulty)),
                ValueType = typeof(Difficulty),
            };
            dataGridView1.Columns.Add(col);

            dataGridView1.CellClick += dataGridView1_CellClick;
            dataGridView1.CellValueChanged += dataGridView1_CellValueChanged;

            this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
        }
Esempio n. 12
0
        public ProfileSchedule(WizardMain parent)
        {
            _wm = parent;
            InitializeComponent();

            var col = new DataGridViewComboBoxColumn
            {
                Name       = "Difficulty",
                DataSource = Enum.GetValues(typeof(Difficulty)),
                ValueType  = typeof(Difficulty),
            };

            profileGrid.Columns.Add(col);

            profileGrid.CellClick        += profileGrid_CellClick;
            profileGrid.CellValueChanged += profileGrid_CellValueChanged;
            profileGrid.DoubleBuffered(true);

            this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
        }
 public WeekSchedule(WizardMain parent)
 {
     Wm = parent;
     InitializeComponent();
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
Esempio n. 14
0
 public ProfileSchedule(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     dataGridView1.CellClick += new DataGridViewCellEventHandler(dataGridView1_CellClick);
 }
 public DiabloOptions(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
 }
Esempio n. 16
0
 public Advanced(WizardMain parent)
 {
     InitializeComponent();
     WM          = parent;
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
Esempio n. 17
0
 private void btnNew_Click(object sender, EventArgs e)
 {
     lock (BotSettings.Instance)
     {
         // Open new bot wizard
         var wm = new WizardMain { TopMost = true };
         wm.ShowDialog();
     }
 }
Esempio n. 18
0
 private void editToolStripMenuItem_Click(object sender, EventArgs e)
 {
     lock (BotSettings.Instance)
     {
         // Edit bot
         var wm = new WizardMain(botGrid.CurrentRow.Index) { TopMost = true };
         wm.ShowDialog();
     }
 }
Esempio n. 19
0
 public ProfileSchedule(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     dataGridView1.CellClick += new DataGridViewCellEventHandler(dataGridView1_CellClick);
 }
Esempio n. 20
0
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     this.VisibleChanged += new EventHandler(Heroes_VisibleChanged);
 }
Esempio n. 21
0
 public Advanced(WizardMain parent)
 {
     InitializeComponent();
     WM = parent;
 }
        private void button4_Click(object sender, EventArgs e)
        {
            // Edit bot
            if (dataGridView1.CurrentRow == null || dataGridView1.CurrentRow.Index < 0)
                return;
            var wm = new Wizard.WizardMain(dataGridView1.CurrentRow.Index) {TopMost = true};

            wm.ShowDialog();
        }
 public WeekSchedule(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
 }
Esempio n. 24
0
 public DiabloOptions(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
 }
Esempio n. 25
0
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     VisibleChanged += Heroes_VisibleChanged;
 }
Esempio n. 26
0
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     VisibleChanged += Heroes_VisibleChanged;
 }
Esempio n. 27
0
        private void btnEdit_Click(object sender, EventArgs e)
        {
            lock (BotSettings.Instance)
            {
                // Edit bot
                if (botGrid.CurrentRow == null || botGrid.CurrentRow.Index < 0)
                    return;
                var wm = new WizardMain(botGrid.CurrentRow.Index) { TopMost = true };

                wm.ShowDialog();
            }
        }
 public DemonbuddyOptions(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
 }
Esempio n. 29
0
 public Advanced(WizardMain parent)
 {
     InitializeComponent();
     WM = parent;
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
Esempio n. 30
0
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     this.VisibleChanged += new EventHandler(Heroes_VisibleChanged);
 }
Esempio n. 31
0
 public Advanced(WizardMain parent)
 {
     InitializeComponent();
     WM = parent;
 }
Esempio n. 32
0
 public DemonbuddyOptions(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
 public DiabloOptions(WizardMain parent)
 {
     _wm = parent;
     InitializeComponent();
     Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
 public DemonbuddyOptions(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
 }
Esempio n. 35
0
 public WeekSchedule(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
 }
 private void button3_Click(object sender, EventArgs e)
 {
     // Open new bot wizard
     var wm = new Wizard.WizardMain {TopMost = true};
     wm.ShowDialog();
 }
Esempio n. 37
0
 public DemonbuddyOptions(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
 private void editToolStripMenuItem_Click(object sender, EventArgs e)
 {
     // Edit bot
     var wm = new Wizard.WizardMain(dataGridView1.CurrentRow.Index) {TopMost = true};
     wm.ShowDialog();
 }
Esempio n. 39
0
 public WeekSchedule(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }