private void draw() { Graphics Graph = this.CreateGraphics(); Methods.RetrieveCities(suspected.SearchedIn).Draw(Graph, suspected.History); }
private void Map_MouseMove(object sender, MouseEventArgs e) { Cursor.Current = Methods.SetPointerCursor(suspected.History, this.PointToClient(Cursor.Position)); }
private void Map_Click(object sender, EventArgs e) { Methods.FillStory(this.PointToClient(Cursor.Position), dataGridView1, suspected.History); }