Exemple #1
0
        private void draw()
        {
            Graphics Graph = this.CreateGraphics();

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