コード例 #1
0
ファイル: Heroes.cs プロジェクト: jnnpsubm/YAR-Auth
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     VisibleChanged += Heroes_VisibleChanged;
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
コード例 #2
0
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     VisibleChanged += Heroes_VisibleChanged;
     this.Anchor     = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
コード例 #3
0
        private void button3_Click(object sender, EventArgs e)
        {
            // Open new bot wizard
            var wm = new Wizard.WizardMain {
                TopMost = true
            };

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

            wm.Show();
        }
コード例 #5
0
ファイル: ProfileSchedule.cs プロジェクト: jnnpsubm/YAR-Auth
        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;
        }
コード例 #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();
     }
 }
コード例 #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();
        }
コード例 #8
0
        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);
        }
コード例 #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();
            }
        }
コード例 #10
0
        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;
        }
コード例 #11
0
        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;
        }
コード例 #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;
        }
コード例 #13
0
 public WeekSchedule(WizardMain parent)
 {
     Wm = parent;
     InitializeComponent();
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
コード例 #14
0
 public ProfileSchedule(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     dataGridView1.CellClick += new DataGridViewCellEventHandler(dataGridView1_CellClick);
 }
コード例 #15
0
 public DiabloOptions(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
 }
コード例 #16
0
 public Advanced(WizardMain parent)
 {
     InitializeComponent();
     WM          = parent;
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
コード例 #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();
     }
 }
コード例 #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();
     }
 }
コード例 #19
0
 public ProfileSchedule(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     dataGridView1.CellClick += new DataGridViewCellEventHandler(dataGridView1_CellClick);
 }
コード例 #20
0
ファイル: Heroes.cs プロジェクト: ksmaze/YetAnotherRelogger
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     this.VisibleChanged += new EventHandler(Heroes_VisibleChanged);
 }
コード例 #21
0
 public Advanced(WizardMain parent)
 {
     InitializeComponent();
     WM = parent;
 }
コード例 #22
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.ShowDialog();
        }
コード例 #23
0
 public WeekSchedule(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
 }
コード例 #24
0
 public DiabloOptions(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
 }
コード例 #25
0
ファイル: Heroes.cs プロジェクト: kallell/YetAnotherRelogger
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     VisibleChanged += Heroes_VisibleChanged;
 }
コード例 #26
0
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     VisibleChanged += Heroes_VisibleChanged;
 }
コード例 #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();
            }
        }
コード例 #28
0
 public DemonbuddyOptions(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
 }
コード例 #29
0
ファイル: Advanced.cs プロジェクト: jnnpsubm/YAR-Auth
 public Advanced(WizardMain parent)
 {
     InitializeComponent();
     WM = parent;
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
コード例 #30
0
 public Heroes(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     this.VisibleChanged += new EventHandler(Heroes_VisibleChanged);
 }
コード例 #31
0
ファイル: Advanced.cs プロジェクト: Somebi/YetAnotherRelogger
 public Advanced(WizardMain parent)
 {
     InitializeComponent();
     WM = parent;
 }
コード例 #32
0
 public DemonbuddyOptions(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
コード例 #33
0
 public DiabloOptions(WizardMain parent)
 {
     _wm = parent;
     InitializeComponent();
     Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
コード例 #34
0
 public DemonbuddyOptions(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
 }
コード例 #35
0
 public WeekSchedule(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
 }
コード例 #36
0
 private void button3_Click(object sender, EventArgs e)
 {
     // Open new bot wizard
     var wm = new Wizard.WizardMain {TopMost = true};
     wm.ShowDialog();
 }
コード例 #37
0
 public DemonbuddyOptions(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }
コード例 #38
0
 private void editToolStripMenuItem_Click(object sender, EventArgs e)
 {
     // Edit bot
     var wm = new Wizard.WizardMain(dataGridView1.CurrentRow.Index) {TopMost = true};
     wm.ShowDialog();
 }
コード例 #39
0
 public WeekSchedule(WizardMain parent)
 {
     WM = parent;
     InitializeComponent();
     this.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;
 }