private void btnInformation_Click(object sender, EventArgs e) { if (formInformation == null) formInformation = new Information(Client); formInformation.StartPosition = FormStartPosition.Manual; formInformation.Location = new Point(this.Location.X + 20, this.Location.Y + 20); if (!formInformation.Visible) formInformation.Show(); else formInformation.Activate(); }
private void MainHub_Shown(object sender, EventArgs e) { this.Client.CloseWhenClientCloses = true; // instantiate modules formCavebot = new Cavebot(this.Client); formHealer = new Healer(this.Client); formHotkeys = new Hotkeys(this.Client); formInformation = new Information(this.Client); formPvP = new PvP(this.Client); formScripter = new Scripter(this.Client); }
private void btnInformation_Click(object sender, EventArgs e) { if (formInformation == null) { formInformation = new Information(Client); } formInformation.StartPosition = FormStartPosition.Manual; formInformation.Location = new Point(this.Location.X + 20, this.Location.Y + 20); if (!formInformation.Visible) { formInformation.Show(); } else { formInformation.Activate(); } }