Files @ bdc2be1924e8
Branch filter:

Location: seniordesign-ui/Demo.WindowsForms/Forms/Message.cs

mkanning@CL-ENS241-10.cedarville.edu
Fixed some bugs with the markers used for tracking balloon and creating routes
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace Demo.WindowsForms.Forms
{
   public partial class Message : Form
   {
      public Message()
      {
         InitializeComponent();
      }

      private void button2_Click(object sender, EventArgs e)
      {
         Close();
      }

      private void button1_Click(object sender, EventArgs e)
      {
         Close();
      }
   }
}