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

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

            wm.Show();
        }
Beispiel #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;
        }
Beispiel #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();
     }
 }
Beispiel #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);
        }
Beispiel #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;
        }
Beispiel #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;
 }
Beispiel #14
0
 public ProfileSchedule(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     dataGridView1.CellClick += new DataGridViewCellEventHandler(dataGridView1_CellClick);
 }
 public DiabloOptions(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
 }
Beispiel #16
0
 public Advanced(WizardMain parent)
 {
     InitializeComponent();
     WM          = parent;
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
 private void btnNew_Click(object sender, EventArgs e)
 {
     lock (BotSettings.Instance)
     {
         // Open new bot wizard
         var wm = new WizardMain { TopMost = true };
         wm.ShowDialog();
     }
 }
 private void editToolStripMenuItem_Click(object sender, EventArgs e)
 {
     lock (BotSettings.Instance)
     {
         // Edit bot
         var wm = new WizardMain(botGrid.CurrentRow.Index) { TopMost = true };
         wm.ShowDialog();
     }
 }
 public ProfileSchedule(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     dataGridView1.CellClick += new DataGridViewCellEventHandler(dataGridView1_CellClick);
 }
Beispiel #20
0
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     this.VisibleChanged += new EventHandler(Heroes_VisibleChanged);
 }
Beispiel #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();
 }
 public DiabloOptions(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
 }
Beispiel #25
0
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     VisibleChanged += Heroes_VisibleChanged;
 }
Beispiel #26
0
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     VisibleChanged += Heroes_VisibleChanged;
 }
        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();
 }
Beispiel #29
0
 public Advanced(WizardMain parent)
 {
     InitializeComponent();
     WM = parent;
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
Beispiel #30
0
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     this.VisibleChanged += new EventHandler(Heroes_VisibleChanged);
 }
Beispiel #31
0
 public Advanced(WizardMain parent)
 {
     InitializeComponent();
     WM = parent;
 }
Beispiel #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();
 }
 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();
 }
Beispiel #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();
 }
 public WeekSchedule(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }