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