示例#1
0
        /// <summary>
        /// 地图显示地震标注
        /// </summary>
        /// <param name="gmapcontrol"></param>
        public void annoEqkList(GMap.NET.WindowsForms.GMapControl gmapcontrol = null)
        {
            try
            {
                int[]          rowNum     = this.gridView.GetSelectedRows();
                double         lg         = 0;
                double         la         = 0;
                List <EqkBean> eqkMapList = new List <EqkBean>();
                MyGMap.ClearAllEqkMarker(gmapcontrol);

                for (int index = 0; index < rowNum.Length; index++)
                {
                    int i = rowNum[index];
                    eqkMapList.Add(eqkDataList[i]);
                    lg += eqkDataList[i].Longtitude;
                    la += eqkDataList[i].Latitude;
                }

                string linecode = lineTag.ToString().Split(',')[1];
                string sitecode = LineBll.Instance.GetSitecodeByLinecode(linecode);
                double lon      = double.Parse(xxkUI.Bll.SiteBll.Instance.GetNameByID("LONGTITUDE", "SITECODE", sitecode));
                double lat      = double.Parse(xxkUI.Bll.SiteBll.Instance.GetNameByID("LATITUDE", "SITECODE", sitecode));

                MyGMap.CreateCircle(new PointLatLng(lat, lon), double.Parse(this.textEdit8.Text), double.Parse(textEdit7.Text), gmapcontrol);
                MyGMap.AnnotationEqkToMap(eqkMapList, gmapcontrol);
                gmapcontrol.Position = new PointLatLng(la / rowNum.Length, lg / rowNum.Length);
                gmapcontrol.Zoom     = 6;
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }
示例#2
0
        public Form1()
        {
            InitializeComponent();

            var gmap = new GMap.NET.WindowsForms.GMapControl();

            gmap.Dock               = DockStyle.Fill;
            gmap.Visible            = true;
            gmap.Position           = new PointLatLng(33.698292, 73.060766);
            gmap.MinZoom            = 1;
            gmap.MaxZoom            = 17;
            gmap.Zoom               = 12;
            gmap.Manager.Mode       = AccessMode.ServerAndCache;
            gmap.CanDragMap         = true;
            gmap.ShowCenter         = false;
            gmap.MapProvider        = GMap.NET.MapProviders.GoogleMapProvider.Instance;
            gmap.DragButton         = System.Windows.Forms.MouseButtons.Left;
            gmap.MouseWheelZoomType = GMap.NET.MouseWheelZoomType.MousePositionAndCenter;
            this.Controls.Add(gmap);

            var mainDir = "../../../";

            var provider = new VectorMbTilesProvider(mainDir + @"tiles/islamabad.mbtiles", mainDir + @"styles/aliflux-style.json", mainDir + @"tile-cache/");

            gmap.MapProvider = provider;
        }
示例#3
0
        } // CompareCitiesPopluation()


        // Methods that takes a reference parameter to a GUI map control and city properties.  Displays
        // a map of requested city and applies a marker to it as per the cities coordinates.
        public void ShowCityOnMap(ref GMap.NET.WindowsForms.GMapControl map, string cityName, 
                                  string province, double lat, double lng)
        {
            // Prepare needed keyword parameter
            string cityKeyword = cityName + ", " + province;
            
            // Pick provider, set map position and define zoom properties
            map.MapProvider = GMapProviders.OpenStreetMap;
            map.SetPositionByKeywords(cityKeyword);

            map.MinZoom = 5;
            map.MaxZoom = 15;
            map.Zoom = 13;

            map.ShowCenter = false;

            // Apply market to city
            GMap.NET.WindowsForms.GMapOverlay markers = new GMap.NET.WindowsForms.GMapOverlay("markers");
            GMap.NET.WindowsForms.GMapMarker marker =
                new GMap.NET.WindowsForms.Markers.GMarkerGoogle(
                    new GMap.NET.PointLatLng(lat, lng),
                    GMap.NET.WindowsForms.Markers.GMarkerGoogleType.blue_pushpin);
            markers.Markers.Add(marker);
            map.Overlays.Add(markers);

        } // END ShowCityOnMap()
示例#4
0
文件: Form1.cs 项目: yurec1/monik
        public ComboBox.ObjectCollection LoadMarkerList(GMap.NET.WindowsForms.GMapControl gmap, ComboBox list)
        {
            list.Items.Clear();
            ComboBox.ObjectCollection a = new ComboBox.ObjectCollection(list);
            if (gmap.Overlays.Count > 0)
            {
                foreach (GMap.NET.WindowsForms.GMapMarker m in gmap.Overlays[0].Markers)
                {
                    a.Add((object)m.ToolTipText);
                }
            }

            return(a);
        }
        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="gMapControl"></param>
        public SharpMapMarker(GMap.NET.WindowsForms.GMapControl gMapControl)
            : base(GMap.NET.PointLatLng.Zero)
        {
            m_gMapControl = gMapControl;

            myMap = new SharpMap.Map(new System.Drawing.Size(m_gMapControl.Width, m_gMapControl.Height));

            m_shapeLayer = new SharpMap.Layers.VectorLayer("SharpMap layer" + Guid.NewGuid());
            //m_shapeLayer.Style.Outline = new System.Drawing.Pen(System.Drawing.Color.Green, 1f);
            m_shapeLayer.Style.EnableOutline = false;
            m_shapeLayer.Style.Line          = new System.Drawing.Pen(System.Drawing.Color.Blue, 1f);

            //myMap.Center = new SharpMap.Geometries.Point(121.54399, 29.868336);

            DisableRegionCheck = true;
            IsHitTestVisible   = false;
        }
        /// <summary>
        /// Constructor
        /// </summary>
        /// <param name="gMapControl"></param>
        public SharpMapMarker(GMap.NET.WindowsForms.GMapControl gMapControl)
            : base(GMap.NET.PointLatLng.Zero)
        {
            m_gMapControl = gMapControl;

            myMap = new SharpMap.Map(new System.Drawing.Size(m_gMapControl.Width, m_gMapControl.Height));

            m_shapeLayer = new SharpMap.Layers.VectorLayer("SharpMap layer" + Guid.NewGuid());
            //m_shapeLayer.Style.Outline = new System.Drawing.Pen(System.Drawing.Color.Green, 1f);
            m_shapeLayer.Style.EnableOutline = false;
            m_shapeLayer.Style.Line = new System.Drawing.Pen(System.Drawing.Color.Blue, 1f);

            //myMap.Center = new SharpMap.Geometries.Point(121.54399, 29.868336);

            DisableRegionCheck = true;
            IsHitTestVisible = false;
        }
示例#7
0
        public GeobaseMapMarker(GMap.NET.WindowsForms.GMapControl gMapControl, string mapFileName)
            : base(GMap.NET.PointLatLng.Zero)
        {
            m_gMapControl = gMapControl;

            if (!string.IsNullOrEmpty(mapFileName))
            {
                string fileName = System.IO.Path.Combine(System.IO.Directory.GetCurrentDirectory(), mapFileName);
                if (System.IO.File.Exists(fileName))
                {
                    Telogis.GeoBase.Repositories.Repository.Default = new Telogis.GeoBase.Repositories.SimpleRepository(fileName);
                }
            }
            myMap = new Telogis.GeoBase.MapCtrl();

            DisableRegionCheck = true;
            IsHitTestVisible   = false;
        }
        public GeobaseMapMarker(GMap.NET.WindowsForms.GMapControl gMapControl, string mapFileName)
            : base(GMap.NET.PointLatLng.Zero)
        {
            m_gMapControl = gMapControl;

            if (!string.IsNullOrEmpty(mapFileName))
            {
                string fileName = System.IO.Path.Combine(System.IO.Directory.GetCurrentDirectory(), mapFileName);
                if (System.IO.File.Exists(fileName))
                {
                    Telogis.GeoBase.Repositories.Repository.Default = new Telogis.GeoBase.Repositories.SimpleRepository(fileName);
                }
            }
            myMap = new Telogis.GeoBase.MapCtrl();

            DisableRegionCheck = true;
            IsHitTestVisible = false;
        }
示例#9
0
        private void btnEqkSite_Click(object sender, EventArgs e)
        {
            try
            {
                if (this.gridView.GetSelectedRows().Length == 0)
                {
                    throw new Exception("未选中任何震例");
                }

                Control xtraTabControl1 = Application.OpenForms["frm_Main"].Controls.Find("xtraTabControl1", true)[0];
                Control mapTabPage      = Application.OpenForms["frm_Main"].Controls.Find("mapTabPage", true)[0];
                ((DevExpress.XtraTab.XtraTabControl)xtraTabControl1).SelectedTabPage = (DevExpress.XtraTab.XtraTabPage)mapTabPage;

                GMap.NET.WindowsForms.GMapControl gmapcontrol = Application.OpenForms["frm_Main"].Controls.Find("gMapCtrl", true)[0] as GMap.NET.WindowsForms.GMapControl;
                annoEqkList(gmapcontrol);
            }
            catch (Exception ex)
            {
                XtraMessageBox.Show(ex.Message, "错误");
            }
        }
        /// <summary>
        /// This method is required for Windows Forms designer support.
        /// Do not change the method contents inside the source code editor. The Forms designer might
        /// not be able to load this method if it was changed manually.
        /// </summary>
        private void InitializeComponent()
        {
            try
            {
                this.map = new GMap.NET.WindowsForms.GMapControl();
            }
            catch (System.Exception ex)
            {
                throw;
            }

            this.cbShowPokemon       = new System.Windows.Forms.CheckBox();
            this.cbShowPokeStops     = new System.Windows.Forms.CheckBox();
            this.button1             = new System.Windows.Forms.Button();
            this.label3              = new System.Windows.Forms.Label();
            this.label2              = new System.Windows.Forms.Label();
            this.label1              = new System.Windows.Forms.Label();
            this.textBox3            = new System.Windows.Forms.TextBox();
            this.textBox2            = new System.Windows.Forms.TextBox();
            this.textBox1            = new System.Windows.Forms.TextBox();
            this.panel1              = new System.Windows.Forms.Panel();
            this.nudRadius           = new System.Windows.Forms.NumericUpDown();
            this.label4              = new System.Windows.Forms.Label();
            this.buttonRefreshForts  = new System.Windows.Forms.Button();
            this.btnGetPoints        = new System.Windows.Forms.Button();
            this.lblAddress          = new System.Windows.Forms.Label();
            this.tbAddress           = new System.Windows.Forms.TextBox();
            this.btnPauseWalking     = new System.Windows.Forms.Button();
            this.buttonZoomOut       = new System.Windows.Forms.Button();
            this.buttonZoomIn        = new System.Windows.Forms.Button();
            this.buttonLoadPokestops = new System.Windows.Forms.Button();
            this.buttonSavePokestops = new System.Windows.Forms.Button();
            this.panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.nudRadius)).BeginInit();
            this.SuspendLayout();
            //
            // map
            //
            this.map.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                     | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
            this.map.Bearing             = 0F;
            this.map.CanDragMap          = true;
            this.map.EmptyTileColor      = System.Drawing.Color.Navy;
            this.map.GrayScaleMode       = false;
            this.map.HelperLineOption    = GMap.NET.WindowsForms.HelperLineOptions.DontShow;
            this.map.LevelsKeepInMemmory = 5;
            this.map.Location            = new System.Drawing.Point(5, 5);
            this.map.Margin             = new System.Windows.Forms.Padding(5);
            this.map.MarkersEnabled     = true;
            this.map.MaxZoom            = 2;
            this.map.MinZoom            = 2;
            this.map.MouseWheelZoomType = GMap.NET.MouseWheelZoomType.MousePositionAndCenter;
            this.map.Name                  = "map";
            this.map.NegativeMode          = false;
            this.map.PolygonsEnabled       = true;
            this.map.RetryLoadTile         = 0;
            this.map.RoutesEnabled         = true;
            this.map.ScaleMode             = GMap.NET.WindowsForms.ScaleModes.Integer;
            this.map.SelectedAreaFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(65)))), ((int)(((byte)(105)))), ((int)(((byte)(225)))));
            this.map.ShowTileGridLines     = false;
            this.map.Size                  = new System.Drawing.Size(873, 501);
            this.map.TabIndex              = 1;
            this.map.Zoom                  = 0D;
            this.map.OnMarkerClick        += new GMap.NET.WindowsForms.MarkerClick(this.map_OnMarkerClick);
            this.map.OnMapDrag            += new GMap.NET.MapDrag(this.map_OnMapDrag);
            this.map.Load                 += new System.EventHandler(this.map_Load);
            //
            // cbShowPokemon
            //
            this.cbShowPokemon.AutoSize   = true;
            this.cbShowPokemon.Checked    = true;
            this.cbShowPokemon.CheckState = System.Windows.Forms.CheckState.Checked;
            this.cbShowPokemon.Location   = new System.Drawing.Point(140, 16);
            this.cbShowPokemon.Margin     = new System.Windows.Forms.Padding(4);
            this.cbShowPokemon.Name       = "cbShowPokemon";
            this.cbShowPokemon.Size       = new System.Drawing.Size(101, 17);
            this.cbShowPokemon.TabIndex   = 4;
            this.cbShowPokemon.Text       = "Show Pokemon";
            this.cbShowPokemon.UseVisualStyleBackColor = true;
            this.cbShowPokemon.Visible            = false;
            this.cbShowPokemon.CheckStateChanged += new System.EventHandler(this.cbShowPokemon_CheckStateChanged);
            //
            // cbShowPokeStops
            //
            this.cbShowPokeStops.AutoSize   = true;
            this.cbShowPokeStops.Checked    = true;
            this.cbShowPokeStops.CheckState = System.Windows.Forms.CheckState.Checked;
            this.cbShowPokeStops.Location   = new System.Drawing.Point(272, 16);
            this.cbShowPokeStops.Margin     = new System.Windows.Forms.Padding(5);
            this.cbShowPokeStops.Name       = "cbShowPokeStops";
            this.cbShowPokeStops.Size       = new System.Drawing.Size(103, 17);
            this.cbShowPokeStops.TabIndex   = 3;
            this.cbShowPokeStops.Text       = "Show PokeStop";
            this.cbShowPokeStops.UseVisualStyleBackColor = true;
            this.cbShowPokeStops.Visible         = false;
            this.cbShowPokeStops.CheckedChanged += new System.EventHandler(this.cbShowPokeStops_CheckedChanged);
            //
            // button1
            //
            this.button1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.button1.Location = new System.Drawing.Point(705, 62);
            this.button1.Margin   = new System.Windows.Forms.Padding(5);
            this.button1.Name     = "button1";
            this.button1.Size     = new System.Drawing.Size(104, 25);
            this.button1.TabIndex = 12;
            this.button1.Text     = "Set Location";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            //
            // label3
            //
            this.label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(475, 66);
            this.label3.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.label3.Name     = "label3";
            this.label3.Size     = new System.Drawing.Size(45, 13);
            this.label3.TabIndex = 17;
            this.label3.Text     = "Altitude:";
            //
            // label2
            //
            this.label2.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(232, 66);
            this.label2.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.label2.Name     = "label2";
            this.label2.Size     = new System.Drawing.Size(57, 13);
            this.label2.TabIndex = 16;
            this.label2.Text     = "Longitude:";
            //
            // label1
            //
            this.label1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(1, 66);
            this.label1.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.label1.Name     = "label1";
            this.label1.Size     = new System.Drawing.Size(48, 13);
            this.label1.TabIndex = 15;
            this.label1.Text     = "Latitude:";
            //
            // textBox3
            //
            this.textBox3.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.textBox3.Enabled      = false;
            this.textBox3.Location     = new System.Drawing.Point(539, 65);
            this.textBox3.Margin       = new System.Windows.Forms.Padding(5);
            this.textBox3.Name         = "textBox3";
            this.textBox3.Size         = new System.Drawing.Size(155, 20);
            this.textBox3.TabIndex     = 11;
            this.textBox3.TextChanged += new System.EventHandler(this.textBox3_TextChanged);
            //
            // textBox2
            //
            this.textBox2.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.textBox2.Location     = new System.Drawing.Point(311, 65);
            this.textBox2.Margin       = new System.Windows.Forms.Padding(5);
            this.textBox2.Name         = "textBox2";
            this.textBox2.Size         = new System.Drawing.Size(155, 20);
            this.textBox2.TabIndex     = 10;
            this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
            //
            // textBox1
            //
            this.textBox1.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.textBox1.Location     = new System.Drawing.Point(69, 65);
            this.textBox1.Margin       = new System.Windows.Forms.Padding(5);
            this.textBox1.Name         = "textBox1";
            this.textBox1.Size         = new System.Drawing.Size(155, 20);
            this.textBox1.TabIndex     = 9;
            this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
            //
            // panel1
            //
            this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.panel1.Controls.Add(this.nudRadius);
            this.panel1.Controls.Add(this.label4);
            this.panel1.Controls.Add(this.buttonRefreshForts);
            this.panel1.Controls.Add(this.btnGetPoints);
            this.panel1.Controls.Add(this.lblAddress);
            this.panel1.Controls.Add(this.tbAddress);
            this.panel1.Controls.Add(this.textBox1);
            this.panel1.Controls.Add(this.textBox2);
            this.panel1.Controls.Add(this.textBox3);
            this.panel1.Controls.Add(this.label1);
            this.panel1.Controls.Add(this.button1);
            this.panel1.Controls.Add(this.label2);
            this.panel1.Controls.Add(this.label3);
            this.panel1.Location = new System.Drawing.Point(2, 419);
            this.panel1.Margin   = new System.Windows.Forms.Padding(4);
            this.panel1.Name     = "panel1";
            this.panel1.Size     = new System.Drawing.Size(829, 92);
            this.panel1.TabIndex = 2;
            //
            // nudRadius
            //
            this.nudRadius.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.nudRadius.Increment = new decimal(new int[] {
                10,
                0,
                0,
                0
            });
            this.nudRadius.Location = new System.Drawing.Point(596, 38);
            this.nudRadius.Maximum  = new decimal(new int[] {
                100000,
                0,
                0,
                0
            });
            this.nudRadius.Name          = "nudRadius";
            this.nudRadius.Size          = new System.Drawing.Size(97, 20);
            this.nudRadius.TabIndex      = 27;
            this.nudRadius.ValueChanged += new System.EventHandler(this.nudRadius_ValueChanged);
            //
            // label4
            //
            this.label4.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(539, 40);
            this.label4.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.label4.Name     = "label4";
            this.label4.Size     = new System.Drawing.Size(43, 13);
            this.label4.TabIndex = 26;
            this.label4.Text     = "Radius:";
            //
            // buttonRefreshForts
            //
            this.buttonRefreshForts.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.buttonRefreshForts.AutoSize = true;
            this.buttonRefreshForts.Location = new System.Drawing.Point(14, 4);
            this.buttonRefreshForts.Margin   = new System.Windows.Forms.Padding(4);
            this.buttonRefreshForts.Name     = "buttonRefreshForts";
            this.buttonRefreshForts.Size     = new System.Drawing.Size(172, 25);
            this.buttonRefreshForts.TabIndex = 6;
            this.buttonRefreshForts.Text     = "Refresh Pokestops";
            this.buttonRefreshForts.UseVisualStyleBackColor = true;
            this.buttonRefreshForts.Visible = false;
            this.buttonRefreshForts.Click  += new System.EventHandler(this.cbShowPokeStops_CheckedChanged);
            //
            // btnGetPoints
            //
            this.btnGetPoints.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.btnGetPoints.Location = new System.Drawing.Point(383, 36);
            this.btnGetPoints.Margin   = new System.Windows.Forms.Padding(5);
            this.btnGetPoints.Name     = "btnGetPoints";
            this.btnGetPoints.Size     = new System.Drawing.Size(92, 25);
            this.btnGetPoints.TabIndex = 8;
            this.btnGetPoints.Text     = "Get Point";
            this.btnGetPoints.UseVisualStyleBackColor = true;
            this.btnGetPoints.Click += new System.EventHandler(this.BtnGetPointsClick);
            //
            // lblAddress
            //
            this.lblAddress.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.lblAddress.AutoSize = true;
            this.lblAddress.Location = new System.Drawing.Point(5, 40);
            this.lblAddress.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
            this.lblAddress.Name     = "lblAddress";
            this.lblAddress.Size     = new System.Drawing.Size(48, 13);
            this.lblAddress.TabIndex = 24;
            this.lblAddress.Text     = "Address:";
            //
            // tbAddress
            //
            this.tbAddress.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.tbAddress.Location = new System.Drawing.Point(69, 36);
            this.tbAddress.Margin   = new System.Windows.Forms.Padding(5);
            this.tbAddress.Name     = "tbAddress";
            this.tbAddress.Size     = new System.Drawing.Size(292, 20);
            this.tbAddress.TabIndex = 7;
            //
            // btnPauseWalking
            //
            this.btnPauseWalking.Location = new System.Drawing.Point(16, 12);
            this.btnPauseWalking.Margin   = new System.Windows.Forms.Padding(2);
            this.btnPauseWalking.Name     = "btnPauseWalking";
            this.btnPauseWalking.Size     = new System.Drawing.Size(106, 23);
            this.btnPauseWalking.TabIndex = 44;
            this.btnPauseWalking.Text     = "Pause Walking";
            this.btnPauseWalking.UseVisualStyleBackColor = true;
            this.btnPauseWalking.Click += new System.EventHandler(this.btnPauseWalking_Click);
            //
            // buttonZoomOut
            //
            this.buttonZoomOut.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonZoomOut.Location = new System.Drawing.Point(853, 453);
            this.buttonZoomOut.Name     = "buttonZoomOut";
            this.buttonZoomOut.Size     = new System.Drawing.Size(25, 23);
            this.buttonZoomOut.TabIndex = 45;
            this.buttonZoomOut.Text     = "+";
            this.buttonZoomOut.UseVisualStyleBackColor = true;
            this.buttonZoomOut.Click += new System.EventHandler(this.buttonZoomOut_Click);
            //
            // buttonZoomIn
            //
            this.buttonZoomIn.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonZoomIn.Location = new System.Drawing.Point(853, 475);
            this.buttonZoomIn.Name     = "buttonZoomIn";
            this.buttonZoomIn.Size     = new System.Drawing.Size(25, 23);
            this.buttonZoomIn.TabIndex = 46;
            this.buttonZoomIn.Text     = "-";
            this.buttonZoomIn.UseVisualStyleBackColor = true;
            this.buttonZoomIn.Click += new System.EventHandler(this.buttonZoomIn_Click);
            //
            // buttonLoadPokestops
            //
            this.buttonLoadPokestops.Location = new System.Drawing.Point(484, 12);
            this.buttonLoadPokestops.Name     = "buttonLoadPokestops";
            this.buttonLoadPokestops.Size     = new System.Drawing.Size(94, 23);
            this.buttonLoadPokestops.TabIndex = 48;
            this.buttonLoadPokestops.Text     = "Load Pokestops";
            this.buttonLoadPokestops.UseVisualStyleBackColor = true;
            this.buttonLoadPokestops.Click += new System.EventHandler(this.buttonLoadPokestops_Click);
            //
            // buttonSavePokestops
            //
            this.buttonSavePokestops.Location = new System.Drawing.Point(385, 12);
            this.buttonSavePokestops.Name     = "buttonSavePokestops";
            this.buttonSavePokestops.Size     = new System.Drawing.Size(94, 23);
            this.buttonSavePokestops.TabIndex = 47;
            this.buttonSavePokestops.Text     = "Save Pokestops";
            this.buttonSavePokestops.UseVisualStyleBackColor = true;
            this.buttonSavePokestops.Click += new System.EventHandler(this.buttonSavePokestops_Click);
            //
            // LocationPanel
            //
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
            this.Controls.Add(this.buttonLoadPokestops);
            this.Controls.Add(this.buttonSavePokestops);
            this.Controls.Add(this.buttonZoomIn);
            this.Controls.Add(this.buttonZoomOut);
            this.Controls.Add(this.cbShowPokemon);
            this.Controls.Add(this.btnPauseWalking);
            this.Controls.Add(this.cbShowPokeStops);
            this.Controls.Add(this.panel1);
            this.Controls.Add(this.map);
            this.Margin = new System.Windows.Forms.Padding(4);
            this.Name   = "LocationPanel";
            this.Size   = new System.Drawing.Size(888, 514);
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.nudRadius)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormMain));
            this.DataUpdateTimer = new System.Windows.Forms.Timer(this.components);
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.colorDialogToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cATDecoderSelectorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.googleEarthToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.miscellaneousToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.recorderAndDataForwarderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.replayToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.replayToRawToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.extendedLabelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.resetDataBufferToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT001DataItemPresenceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT002DataItemPresenceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT008DataItemPresenceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT034DataItemPresenceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT002DataItemPresenceToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT062DataItemPresenceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT063ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT065DataItemPresenceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT244DataItemPresenceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.detailedViewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT001ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.targetReportDescriptorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.measuredPositionInPolarCoordinatesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.mode3ACodeInOctalRepresentationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.modeCCodeInBinaryRepresentationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.radarPlotCharacteristicsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.truncatedTimeOfDayToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.mode2CodeInOctalRepresentationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.measuredRadialDopplerSpeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.receivedPowerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.mode3ACodeConfidenceIndicatorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.modeCCodeAndCodeConfidenceIndicatorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.mode2CodeConfidenceIndicatorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.warningErrorConditionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.presenceOfXPulseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT002ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.messageTypeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.sectorNumberToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.timeOfDayToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.antennaRotationPeriodToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.stationConfigurationStatusToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.stationProcessingModeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.plotCountValuesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.dynamicWindowType1ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.collimationErrorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.warningErrorConditionsToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT008ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.messageTypeToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.vectorQualifierToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.sequenceOfCartesianVectorsInSPFNotationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.sequenceOfPolarVectorsInSPFNotationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.contourIdentifier040ContourIdentifierToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.sequenceOfContourPointsInSPFNotationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.timeOfDayToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.processingStatusToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.stationConfigurationStatusToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.totalNumberOfItemsConstitutingOneWeatherPictureToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.sequenceOfWeatherVectorsInSPFNotationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT034ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.messageTypeToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.timeofDayToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.sectorNumberToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.antennaRotationPeriodToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.systemConfigurationAndStatusToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.systemProcessingModeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.messageCountValuesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.genericPolarWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.dataFilterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.dPositionOfDataSourceToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.collimationErrorToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT048ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.timeofDayToolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
            this.targetReportDescriptorToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.measuredPositionInSlantPolarCoordinatesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.mode3ACodeInOctalRepresentationToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.flightLevelInBinaryRepresentationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.radarPlotCharacteristicsToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.aircraftAddressToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.aircraftIdentificationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.modeSMBDataToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.trackNumberToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.calculatedPositionInCartesianCoordinatesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.calculatedTrackVelocityInPolarRepresentationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.trackStatusToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.trackQualityToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.warningErrorConditionsToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
            this.mode3ACodeConfidenceIndicatorToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.modeCCodeAndConfidenceIndicatorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.heightMeasuredBy3DRadarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.radialDopplerSpeedToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.communicationsACASCapabilityAndFlightStatusToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.aCASResolutionAdvisoryReportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.mode1CodeInOctalRepresentationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.mode1CodeConfidenceIndicatorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT062ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.serviceIdentificationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.trackNumberToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.trackMode3ACodeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.calculatedTrackPositionWGS84ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.measuredFlightLevelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.aircraftDerivedDataSUBF2ACIDToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT063ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT065ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.cAT244ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.dataBySSRCodeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.googleEarthToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.settingsToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
            this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.buttonStopRun = new System.Windows.Forms.Button();
            this.label7 = new System.Windows.Forms.Label();
            this.labelConnIpAndPort = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.labelActiveConnName = new System.Windows.Forms.Label();
            this.progressBar1 = new System.Windows.Forms.ProgressBar();
            this.PlotandTrackDisplayUpdateTimer = new System.Windows.Forms.Timer(this.components);
            this.StaticDisplayTimer = new System.Windows.Forms.Timer(this.components);
            this.groupBoxConnection = new System.Windows.Forms.GroupBox();
            this.labelLocalInterface = new System.Windows.Forms.Label();
            this.label16 = new System.Windows.Forms.Label();
            this.btnOpenConnection = new System.Windows.Forms.Button();
            this.label9 = new System.Windows.Forms.Label();
            this.checkBoxRecording = new System.Windows.Forms.CheckBox();
            this.tabPlotDisplay = new System.Windows.Forms.TabPage();
            this.labelLat_Long = new System.Windows.Forms.Label();
            this.labelFrozeDisplay = new System.Windows.Forms.Label();
            gMapControl = new GMap.NET.WindowsForms.GMapControl();
            this.labelTargetCount = new System.Windows.Forms.Label();
            this.lblNumberofTargets = new System.Windows.Forms.Label();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.checkBoxDisplayPSR = new System.Windows.Forms.CheckBox();
            this.numericUpDownUpper = new System.Windows.Forms.NumericUpDown();
            this.numericUpDownLower = new System.Windows.Forms.NumericUpDown();
            this.checkBoxFLFilter = new System.Windows.Forms.CheckBox();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.lblCenterLon = new System.Windows.Forms.Label();
            this.lblCenterLat = new System.Windows.Forms.Label();
            this.label15 = new System.Windows.Forms.Label();
            this.label14 = new System.Windows.Forms.Label();
            this.lblZoomLevel = new System.Windows.Forms.Label();
            this.label13 = new System.Windows.Forms.Label();
            this.comboBoxMapType = new System.Windows.Forms.ComboBox();
            this.button7 = new System.Windows.Forms.Button();
            this.button6 = new System.Windows.Forms.Button();
            this.button5 = new System.Windows.Forms.Button();
            this.button4 = new System.Windows.Forms.Button();
            this.button3 = new System.Windows.Forms.Button();
            this.label12 = new System.Windows.Forms.Label();
            this.button2 = new System.Windows.Forms.Button();
            this.button1 = new System.Windows.Forms.Button();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.comboBoxLiveDisplayMode = new System.Windows.Forms.ComboBox();
            this.checkEnableDisplay = new System.Windows.Forms.CheckBox();
            this.groupBoxUpdateRate = new System.Windows.Forms.GroupBox();
            this.checkBoxSyncToNM = new System.Windows.Forms.CheckBox();
            this.textBox1TrackCoast = new System.Windows.Forms.TextBox();
            this.labelTrackCoast = new System.Windows.Forms.Label();
            this.labelTrackCoastLabel = new System.Windows.Forms.Label();
            this.labelDisplayUpdateRate = new System.Windows.Forms.Label();
            this.textBoxUpdateRate = new System.Windows.Forms.TextBox();
            this.groupBoxSSRFilter = new System.Windows.Forms.GroupBox();
            this.textBoxSSRCode = new System.Windows.Forms.TextBox();
            this.label11 = new System.Windows.Forms.Label();
            this.label10 = new System.Windows.Forms.Label();
            this.comboBoxSSRFilterBox = new System.Windows.Forms.ComboBox();
            this.checkBoxFilterBySSR = new System.Windows.Forms.CheckBox();
            this.tabPageAsterixMessages = new System.Windows.Forms.TabPage();
            this.checkBoxFillListBox = new System.Windows.Forms.CheckBox();
            this.listBoxManFrame = new System.Windows.Forms.ListBox();
            this.label3 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.tabMainTab = new System.Windows.Forms.TabControl();
            this.tabPageSysStatus = new System.Windows.Forms.TabPage();
            this.checkBoxSystMonEnabled = new System.Windows.Forms.CheckBox();
            this.groupBoxSysStatCAT34 = new System.Windows.Forms.GroupBox();
            this.labelAntenaPeriod034 = new System.Windows.Forms.Label();
            this.label18 = new System.Windows.Forms.Label();
            this.btnAckowledgeRadar34 = new System.Windows.Forms.Button();
            this.groupBoxOnePSR = new System.Windows.Forms.GroupBox();
            this.comboBoxPSR_Mon_Sys_Disconect = new System.Windows.Forms.ComboBox();
            this.comboBoxPSR_Overloaded = new System.Windows.Forms.ComboBox();
            this.comboBoxPSR_Antenna_Selected = new System.Windows.Forms.ComboBox();
            this.comboBoxPSR_Channel_Status = new System.Windows.Forms.ComboBox();
            this.groupBoxOneModeS = new System.Windows.Forms.GroupBox();
            this.comboBoxMDS_Comm_Overload = new System.Windows.Forms.ComboBox();
            this.comboBoxMDS_DataLink_Overload = new System.Windows.Forms.ComboBox();
            this.comboBoxMDS_Ch_For_DataLink = new System.Windows.Forms.ComboBox();
            this.comboBoxMDS_Ch_For_Cord = new System.Windows.Forms.ComboBox();
            this.comboBoxMDS_Mon_Sys_Disconect = new System.Windows.Forms.ComboBox();
            this.ccomboBoxMDS_Overoaded = new System.Windows.Forms.ComboBox();
            this.comboBoxMDS_Antena_Selected = new System.Windows.Forms.ComboBox();
            this.comboBoxMDS_Channel_Status = new System.Windows.Forms.ComboBox();
            this.groupBoxOneSSR = new System.Windows.Forms.GroupBox();
            this.comboBoxSSR_Mon_Sys_Disconect = new System.Windows.Forms.ComboBox();
            this.comboBoxSSR_Overloaded = new System.Windows.Forms.ComboBox();
            this.comboBoxSSR_Antenna_Selected = new System.Windows.Forms.ComboBox();
            this.comboBoxSSR_Channel_Status = new System.Windows.Forms.ComboBox();
            this.groupBoxOneCOM = new System.Windows.Forms.GroupBox();
            this.comboBoxCOM_Time_Source_Status = new System.Windows.Forms.ComboBox();
            this.comboBoxCOM_MON_Sys_Disconect = new System.Windows.Forms.ComboBox();
            this.comboBoxCOM_RDPC_Selected = new System.Windows.Forms.ComboBox();
            this.comboBoxCOM_Transmit_Overload = new System.Windows.Forms.ComboBox();
            this.comboBoxCOM_RDP_Overload = new System.Windows.Forms.ComboBox();
            this.comboBoxCOM_RDPC_Reset = new System.Windows.Forms.ComboBox();
            this.comboBoxCOM_Top_Status = new System.Windows.Forms.ComboBox();
            this.NorthMarkerTimer = new System.Windows.Forms.Timer(this.components);
            this.backgroundWorkerLoadData = new System.ComponentModel.BackgroundWorker();
            this.groupBox4 = new System.Windows.Forms.GroupBox();
            this.label17 = new System.Windows.Forms.Label();
            this.checkBoxRecordInRaw = new System.Windows.Forms.CheckBox();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.labelBytesReplayed = new System.Windows.Forms.Label();
            this.progressBarReplayActive = new System.Windows.Forms.ProgressBar();
            this.btnStartStopFileReplay = new System.Windows.Forms.Button();
            this.labelClock = new System.Windows.Forms.Label();
            this.checkBoxIs_UTC = new System.Windows.Forms.CheckBox();
            this.checkBoxFullscreen = new System.Windows.Forms.CheckBox();
            this.menuStrip1.SuspendLayout();
            this.groupBoxConnection.SuspendLayout();
            this.tabPlotDisplay.SuspendLayout();
            this.groupBox2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownUpper)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownLower)).BeginInit();
            this.groupBox1.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.groupBoxUpdateRate.SuspendLayout();
            this.groupBoxSSRFilter.SuspendLayout();
            this.tabPageAsterixMessages.SuspendLayout();
            this.tabMainTab.SuspendLayout();
            this.tabPageSysStatus.SuspendLayout();
            this.groupBoxSysStatCAT34.SuspendLayout();
            this.groupBoxOnePSR.SuspendLayout();
            this.groupBoxOneModeS.SuspendLayout();
            this.groupBoxOneSSR.SuspendLayout();
            this.groupBoxOneCOM.SuspendLayout();
            this.groupBox4.SuspendLayout();
            this.groupBox5.SuspendLayout();
            this.SuspendLayout();
            // 
            // DataUpdateTimer
            // 
            this.DataUpdateTimer.Enabled = true;
            this.DataUpdateTimer.Interval = 1000;
            this.DataUpdateTimer.Tick += new System.EventHandler(this.DataUpdateTimer_Tick);
            // 
            // menuStrip1
            // 
            this.menuStrip1.BackColor = System.Drawing.Color.Black;
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.toolStripMenuItem1,
            this.settingsToolStripMenuItem,
            this.toolStripMenuItem2,
            this.toolsToolStripMenuItem,
            this.detailedViewToolStripMenuItem,
            this.dataBySSRCodeToolStripMenuItem,
            this.googleEarthToolStripMenuItem,
            this.aboutToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(1189, 24);
            this.menuStrip1.TabIndex = 9;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // toolStripMenuItem1
            // 
            this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.openToolStripMenuItem});
            this.toolStripMenuItem1.ForeColor = System.Drawing.Color.Silver;
            this.toolStripMenuItem1.Name = "toolStripMenuItem1";
            this.toolStripMenuItem1.Size = new System.Drawing.Size(37, 20);
            this.toolStripMenuItem1.Text = "File";
            this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
            // 
            // openToolStripMenuItem
            // 
            this.openToolStripMenuItem.Name = "openToolStripMenuItem";
            this.openToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
            this.openToolStripMenuItem.Text = "Open Asterix Raw";
            this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
            // 
            // settingsToolStripMenuItem
            // 
            this.settingsToolStripMenuItem.BackColor = System.Drawing.Color.Black;
            this.settingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.colorDialogToolStripMenuItem,
            this.cATDecoderSelectorToolStripMenuItem,
            this.googleEarthToolStripMenuItem2,
            this.miscellaneousToolStripMenuItem});
            this.settingsToolStripMenuItem.ForeColor = System.Drawing.Color.Silver;
            this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
            this.settingsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
            this.settingsToolStripMenuItem.Text = "Settings";
            // 
            // colorDialogToolStripMenuItem
            // 
            this.colorDialogToolStripMenuItem.Name = "colorDialogToolStripMenuItem";
            this.colorDialogToolStripMenuItem.Size = new System.Drawing.Size(189, 22);
            this.colorDialogToolStripMenuItem.Text = "Display Attributes";
            this.colorDialogToolStripMenuItem.Click += new System.EventHandler(this.colorDialogToolStripMenuItem_Click);
            // 
            // cATDecoderSelectorToolStripMenuItem
            // 
            this.cATDecoderSelectorToolStripMenuItem.Name = "cATDecoderSelectorToolStripMenuItem";
            this.cATDecoderSelectorToolStripMenuItem.Size = new System.Drawing.Size(189, 22);
            this.cATDecoderSelectorToolStripMenuItem.Text = "CAT Decoder Selector";
            this.cATDecoderSelectorToolStripMenuItem.Click += new System.EventHandler(this.cATDecoderSelectorToolStripMenuItem_Click);
            // 
            // googleEarthToolStripMenuItem2
            // 
            this.googleEarthToolStripMenuItem2.Name = "googleEarthToolStripMenuItem2";
            this.googleEarthToolStripMenuItem2.Size = new System.Drawing.Size(189, 22);
            this.googleEarthToolStripMenuItem2.Text = "Google Earth";
            this.googleEarthToolStripMenuItem2.Click += new System.EventHandler(this.googleEarthToolStripMenuItem2_Click);
            // 
            // miscellaneousToolStripMenuItem
            // 
            this.miscellaneousToolStripMenuItem.Name = "miscellaneousToolStripMenuItem";
            this.miscellaneousToolStripMenuItem.Size = new System.Drawing.Size(189, 22);
            this.miscellaneousToolStripMenuItem.Text = "Miscellaneous";
            this.miscellaneousToolStripMenuItem.Click += new System.EventHandler(this.miscellaneousToolStripMenuItem_Click);
            // 
            // toolStripMenuItem2
            // 
            this.toolStripMenuItem2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.recorderAndDataForwarderToolStripMenuItem,
            this.replayToolStripMenuItem,
            this.replayToRawToolStripMenuItem,
            this.extendedLabelToolStripMenuItem});
            this.toolStripMenuItem2.ForeColor = System.Drawing.Color.Silver;
            this.toolStripMenuItem2.Name = "toolStripMenuItem2";
            this.toolStripMenuItem2.Size = new System.Drawing.Size(48, 20);
            this.toolStripMenuItem2.Text = "Tools";
            this.toolStripMenuItem2.Click += new System.EventHandler(this.toolStripMenuItem2_Click);
            // 
            // recorderAndDataForwarderToolStripMenuItem
            // 
            this.recorderAndDataForwarderToolStripMenuItem.Name = "recorderAndDataForwarderToolStripMenuItem";
            this.recorderAndDataForwarderToolStripMenuItem.Size = new System.Drawing.Size(227, 22);
            this.recorderAndDataForwarderToolStripMenuItem.Text = "Data Recorder and Forwarder";
            this.recorderAndDataForwarderToolStripMenuItem.Click += new System.EventHandler(this.recorderAndDataForwarderToolStripMenuItem_Click);
            // 
            // replayToolStripMenuItem
            // 
            this.replayToolStripMenuItem.Name = "replayToolStripMenuItem";
            this.replayToolStripMenuItem.Size = new System.Drawing.Size(227, 22);
            this.replayToolStripMenuItem.Text = "Replay";
            this.replayToolStripMenuItem.Click += new System.EventHandler(this.replayToolStripMenuItem_Click);
            // 
            // replayToRawToolStripMenuItem
            // 
            this.replayToRawToolStripMenuItem.Name = "replayToRawToolStripMenuItem";
            this.replayToRawToolStripMenuItem.Size = new System.Drawing.Size(227, 22);
            this.replayToRawToolStripMenuItem.Text = "Replay to Raw";
            this.replayToRawToolStripMenuItem.Click += new System.EventHandler(this.replayToRawToolStripMenuItem_Click);
            // 
            // extendedLabelToolStripMenuItem
            // 
            this.extendedLabelToolStripMenuItem.Name = "extendedLabelToolStripMenuItem";
            this.extendedLabelToolStripMenuItem.Size = new System.Drawing.Size(227, 22);
            this.extendedLabelToolStripMenuItem.Text = "Extended Label";
            this.extendedLabelToolStripMenuItem.Click += new System.EventHandler(this.extendedLabelToolStripMenuItem_Click);
            // 
            // toolsToolStripMenuItem
            // 
            this.toolsToolStripMenuItem.BackColor = System.Drawing.Color.Black;
            this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.resetDataBufferToolStripMenuItem,
            this.cAT001DataItemPresenceToolStripMenuItem,
            this.cAT002DataItemPresenceToolStripMenuItem,
            this.cAT008DataItemPresenceToolStripMenuItem,
            this.cAT034DataItemPresenceToolStripMenuItem,
            this.cAT002DataItemPresenceToolStripMenuItem1,
            this.cAT062DataItemPresenceToolStripMenuItem,
            this.cAT063ToolStripMenuItem,
            this.cAT065DataItemPresenceToolStripMenuItem,
            this.cAT244DataItemPresenceToolStripMenuItem});
            this.toolsToolStripMenuItem.ForeColor = System.Drawing.Color.Silver;
            this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem";
            this.toolsToolStripMenuItem.Size = new System.Drawing.Size(120, 20);
            this.toolsToolStripMenuItem.Text = "Data Item Presence";
            this.toolsToolStripMenuItem.Click += new System.EventHandler(this.toolsToolStripMenuItem_Click);
            // 
            // resetDataBufferToolStripMenuItem
            // 
            this.resetDataBufferToolStripMenuItem.Name = "resetDataBufferToolStripMenuItem";
            this.resetDataBufferToolStripMenuItem.Size = new System.Drawing.Size(222, 22);
            this.resetDataBufferToolStripMenuItem.Text = "Reset Data Buffer";
            this.resetDataBufferToolStripMenuItem.Click += new System.EventHandler(this.resetDataBufferToolStripMenuItem_Click);
            // 
            // cAT001DataItemPresenceToolStripMenuItem
            // 
            this.cAT001DataItemPresenceToolStripMenuItem.Name = "cAT001DataItemPresenceToolStripMenuItem";
            this.cAT001DataItemPresenceToolStripMenuItem.Size = new System.Drawing.Size(222, 22);
            this.cAT001DataItemPresenceToolStripMenuItem.Text = "CAT 001 Data Item Presence";
            this.cAT001DataItemPresenceToolStripMenuItem.Click += new System.EventHandler(this.cAT001DataItemPresenceToolStripMenuItem_Click);
            // 
            // cAT002DataItemPresenceToolStripMenuItem
            // 
            this.cAT002DataItemPresenceToolStripMenuItem.Name = "cAT002DataItemPresenceToolStripMenuItem";
            this.cAT002DataItemPresenceToolStripMenuItem.Size = new System.Drawing.Size(222, 22);
            this.cAT002DataItemPresenceToolStripMenuItem.Text = "CAT 002 Data Item Presence";
            this.cAT002DataItemPresenceToolStripMenuItem.Click += new System.EventHandler(this.cAT002DataItemPresenceToolStripMenuItem_Click);
            // 
            // cAT008DataItemPresenceToolStripMenuItem
            // 
            this.cAT008DataItemPresenceToolStripMenuItem.Name = "cAT008DataItemPresenceToolStripMenuItem";
            this.cAT008DataItemPresenceToolStripMenuItem.Size = new System.Drawing.Size(222, 22);
            this.cAT008DataItemPresenceToolStripMenuItem.Text = "CAT008 Data Item Presence";
            this.cAT008DataItemPresenceToolStripMenuItem.Click += new System.EventHandler(this.cAT008DataItemPresenceToolStripMenuItem_Click);
            // 
            // cAT034DataItemPresenceToolStripMenuItem
            // 
            this.cAT034DataItemPresenceToolStripMenuItem.Name = "cAT034DataItemPresenceToolStripMenuItem";
            this.cAT034DataItemPresenceToolStripMenuItem.Size = new System.Drawing.Size(222, 22);
            this.cAT034DataItemPresenceToolStripMenuItem.Text = "CAT034 Data Item Presence";
            this.cAT034DataItemPresenceToolStripMenuItem.Click += new System.EventHandler(this.cAT034DataItemPresenceToolStripMenuItem_Click);
            // 
            // cAT002DataItemPresenceToolStripMenuItem1
            // 
            this.cAT002DataItemPresenceToolStripMenuItem1.Name = "cAT002DataItemPresenceToolStripMenuItem1";
            this.cAT002DataItemPresenceToolStripMenuItem1.Size = new System.Drawing.Size(222, 22);
            this.cAT002DataItemPresenceToolStripMenuItem1.Text = "CAT048 Data Item Presence";
            this.cAT002DataItemPresenceToolStripMenuItem1.Click += new System.EventHandler(this.cAT002DataItemPresenceToolStripMenuItem1_Click);
            // 
            // cAT062DataItemPresenceToolStripMenuItem
            // 
            this.cAT062DataItemPresenceToolStripMenuItem.Name = "cAT062DataItemPresenceToolStripMenuItem";
            this.cAT062DataItemPresenceToolStripMenuItem.Size = new System.Drawing.Size(222, 22);
            this.cAT062DataItemPresenceToolStripMenuItem.Text = "CAT062 Data Item Presence";
            this.cAT062DataItemPresenceToolStripMenuItem.Click += new System.EventHandler(this.cAT062DataItemPresenceToolStripMenuItem_Click);
            // 
            // cAT063ToolStripMenuItem
            // 
            this.cAT063ToolStripMenuItem.Name = "cAT063ToolStripMenuItem";
            this.cAT063ToolStripMenuItem.Size = new System.Drawing.Size(222, 22);
            this.cAT063ToolStripMenuItem.Text = "CAT063 Data Item Presence";
            this.cAT063ToolStripMenuItem.Click += new System.EventHandler(this.cAT063ToolStripMenuItem_Click);
            // 
            // cAT065DataItemPresenceToolStripMenuItem
            // 
            this.cAT065DataItemPresenceToolStripMenuItem.Name = "cAT065DataItemPresenceToolStripMenuItem";
            this.cAT065DataItemPresenceToolStripMenuItem.Size = new System.Drawing.Size(222, 22);
            this.cAT065DataItemPresenceToolStripMenuItem.Text = "CAT065 Data Item Presence";
            this.cAT065DataItemPresenceToolStripMenuItem.Click += new System.EventHandler(this.cAT065DataItemPresenceToolStripMenuItem_Click);
            // 
            // cAT244DataItemPresenceToolStripMenuItem
            // 
            this.cAT244DataItemPresenceToolStripMenuItem.Enabled = false;
            this.cAT244DataItemPresenceToolStripMenuItem.Name = "cAT244DataItemPresenceToolStripMenuItem";
            this.cAT244DataItemPresenceToolStripMenuItem.Size = new System.Drawing.Size(222, 22);
            this.cAT244DataItemPresenceToolStripMenuItem.Text = "CAT244 Data Item Presence";
            this.cAT244DataItemPresenceToolStripMenuItem.Click += new System.EventHandler(this.cAT244DataItemPresenceToolStripMenuItem_Click);
            // 
            // detailedViewToolStripMenuItem
            // 
            this.detailedViewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.cAT001ToolStripMenuItem,
            this.cAT002ToolStripMenuItem,
            this.cAT008ToolStripMenuItem1,
            this.cAT034ToolStripMenuItem,
            this.cAT048ToolStripMenuItem,
            this.cAT062ToolStripMenuItem,
            this.cAT063ToolStripMenuItem1,
            this.cAT065ToolStripMenuItem,
            this.cAT244ToolStripMenuItem});
            this.detailedViewToolStripMenuItem.ForeColor = System.Drawing.Color.Silver;
            this.detailedViewToolStripMenuItem.Name = "detailedViewToolStripMenuItem";
            this.detailedViewToolStripMenuItem.Size = new System.Drawing.Size(98, 20);
            this.detailedViewToolStripMenuItem.Text = "Data Item View";
            // 
            // cAT001ToolStripMenuItem
            // 
            this.cAT001ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.targetReportDescriptorToolStripMenuItem,
            this.measuredPositionInPolarCoordinatesToolStripMenuItem,
            this.mode3ACodeInOctalRepresentationToolStripMenuItem,
            this.modeCCodeInBinaryRepresentationToolStripMenuItem,
            this.radarPlotCharacteristicsToolStripMenuItem,
            this.truncatedTimeOfDayToolStripMenuItem,
            this.mode2CodeInOctalRepresentationToolStripMenuItem,
            this.measuredRadialDopplerSpeedToolStripMenuItem,
            this.receivedPowerToolStripMenuItem,
            this.mode3ACodeConfidenceIndicatorToolStripMenuItem,
            this.modeCCodeAndCodeConfidenceIndicatorToolStripMenuItem,
            this.mode2CodeConfidenceIndicatorToolStripMenuItem,
            this.warningErrorConditionsToolStripMenuItem,
            this.presenceOfXPulseToolStripMenuItem});
            this.cAT001ToolStripMenuItem.Name = "cAT001ToolStripMenuItem";
            this.cAT001ToolStripMenuItem.Size = new System.Drawing.Size(115, 22);
            this.cAT001ToolStripMenuItem.Text = "CAT001";
            // 
            // targetReportDescriptorToolStripMenuItem
            // 
            this.targetReportDescriptorToolStripMenuItem.Name = "targetReportDescriptorToolStripMenuItem";
            this.targetReportDescriptorToolStripMenuItem.Size = new System.Drawing.Size(347, 22);
            this.targetReportDescriptorToolStripMenuItem.Text = "020 Target Report Descriptor                     ";
            this.targetReportDescriptorToolStripMenuItem.Click += new System.EventHandler(this.targetReportDescriptorToolStripMenuItem_Click);
            // 
            // measuredPositionInPolarCoordinatesToolStripMenuItem
            // 
            this.measuredPositionInPolarCoordinatesToolStripMenuItem.Name = "measuredPositionInPolarCoordinatesToolStripMenuItem";
            this.measuredPositionInPolarCoordinatesToolStripMenuItem.Size = new System.Drawing.Size(347, 22);
            this.measuredPositionInPolarCoordinatesToolStripMenuItem.Text = "040 Measured Position in Polar Coordinates       ";
            this.measuredPositionInPolarCoordinatesToolStripMenuItem.Click += new System.EventHandler(this.measuredPositionInPolarCoordinatesToolStripMenuItem_Click);
            // 
            // mode3ACodeInOctalRepresentationToolStripMenuItem
            // 
            this.mode3ACodeInOctalRepresentationToolStripMenuItem.Name = "mode3ACodeInOctalRepresentationToolStripMenuItem";
            this.mode3ACodeInOctalRepresentationToolStripMenuItem.Size = new System.Drawing.Size(347, 22);
            this.mode3ACodeInOctalRepresentationToolStripMenuItem.Text = "070 Mode-3/A Code in Octal Representation        ";
            this.mode3ACodeInOctalRepresentationToolStripMenuItem.Click += new System.EventHandler(this.mode3ACodeInOctalRepresentationToolStripMenuItem_Click);
            // 
            // modeCCodeInBinaryRepresentationToolStripMenuItem
            // 
            this.modeCCodeInBinaryRepresentationToolStripMenuItem.Name = "modeCCodeInBinaryRepresentationToolStripMenuItem";
            this.modeCCodeInBinaryRepresentationToolStripMenuItem.Size = new System.Drawing.Size(347, 22);
            this.modeCCodeInBinaryRepresentationToolStripMenuItem.Text = "090 Mode-C Code in Binary Representation         ";
            this.modeCCodeInBinaryRepresentationToolStripMenuItem.Click += new System.EventHandler(this.modeCCodeInBinaryRepresentationToolStripMenuItem_Click);
            // 
            // radarPlotCharacteristicsToolStripMenuItem
            // 
            this.radarPlotCharacteristicsToolStripMenuItem.Enabled = false;
            this.radarPlotCharacteristicsToolStripMenuItem.Name = "radarPlotCharacteristicsToolStripMenuItem";
            this.radarPlotCharacteristicsToolStripMenuItem.Size = new System.Drawing.Size(347, 22);
            this.radarPlotCharacteristicsToolStripMenuItem.Text = "130 Radar Plot Characteristics                   ";
            // 
            // truncatedTimeOfDayToolStripMenuItem
            // 
            this.truncatedTimeOfDayToolStripMenuItem.Enabled = false;
            this.truncatedTimeOfDayToolStripMenuItem.Name = "truncatedTimeOfDayToolStripMenuItem";
            this.truncatedTimeOfDayToolStripMenuItem.Size = new System.Drawing.Size(347, 22);
            this.truncatedTimeOfDayToolStripMenuItem.Text = "141 Truncated Time of Day                        ";
            // 
            // mode2CodeInOctalRepresentationToolStripMenuItem
            // 
            this.mode2CodeInOctalRepresentationToolStripMenuItem.Enabled = false;
            this.mode2CodeInOctalRepresentationToolStripMenuItem.Name = "mode2CodeInOctalRepresentationToolStripMenuItem";
            this.mode2CodeInOctalRepresentationToolStripMenuItem.Size = new System.Drawing.Size(347, 22);
            this.mode2CodeInOctalRepresentationToolStripMenuItem.Text = "050 Mode-2 Code in Octal Representation         ";
            // 
            // measuredRadialDopplerSpeedToolStripMenuItem
            // 
            this.measuredRadialDopplerSpeedToolStripMenuItem.Enabled = false;
            this.measuredRadialDopplerSpeedToolStripMenuItem.Name = "measuredRadialDopplerSpeedToolStripMenuItem";
            this.measuredRadialDopplerSpeedToolStripMenuItem.Size = new System.Drawing.Size(347, 22);
            this.measuredRadialDopplerSpeedToolStripMenuItem.Text = "120 Measured Radial Doppler Speed               ";
            // 
            // receivedPowerToolStripMenuItem
            // 
            this.receivedPowerToolStripMenuItem.Enabled = false;
            this.receivedPowerToolStripMenuItem.Name = "receivedPowerToolStripMenuItem";
            this.receivedPowerToolStripMenuItem.Size = new System.Drawing.Size(347, 22);
            this.receivedPowerToolStripMenuItem.Text = "131 Received Power                              ";
            // 
            // mode3ACodeConfidenceIndicatorToolStripMenuItem
            // 
            this.mode3ACodeConfidenceIndicatorToolStripMenuItem.Enabled = false;
            this.mode3ACodeConfidenceIndicatorToolStripMenuItem.Name = "mode3ACodeConfidenceIndicatorToolStripMenuItem";
            this.mode3ACodeConfidenceIndicatorToolStripMenuItem.Size = new System.Drawing.Size(347, 22);
            this.mode3ACodeConfidenceIndicatorToolStripMenuItem.Text = "080 Mode-3/A Code Confidence Indicator";
            // 
            // modeCCodeAndCodeConfidenceIndicatorToolStripMenuItem
            // 
            this.modeCCodeAndCodeConfidenceIndicatorToolStripMenuItem.Enabled = false;
            this.modeCCodeAndCodeConfidenceIndicatorToolStripMenuItem.Name = "modeCCodeAndCodeConfidenceIndicatorToolStripMenuItem";
            this.modeCCodeAndCodeConfidenceIndicatorToolStripMenuItem.Size = new System.Drawing.Size(347, 22);
            this.modeCCodeAndCodeConfidenceIndicatorToolStripMenuItem.Text = "100 Mode-C Code and Code Confidence Indicator   ";
            // 
            // mode2CodeConfidenceIndicatorToolStripMenuItem
            // 
            this.mode2CodeConfidenceIndicatorToolStripMenuItem.Enabled = false;
            this.mode2CodeConfidenceIndicatorToolStripMenuItem.Name = "mode2CodeConfidenceIndicatorToolStripMenuItem";
            this.mode2CodeConfidenceIndicatorToolStripMenuItem.Size = new System.Drawing.Size(347, 22);
            this.mode2CodeConfidenceIndicatorToolStripMenuItem.Text = "060 Mode-2 Code Confidence Indicator            ";
            // 
            // warningErrorConditionsToolStripMenuItem
            // 
            this.warningErrorConditionsToolStripMenuItem.Enabled = false;
            this.warningErrorConditionsToolStripMenuItem.Name = "warningErrorConditionsToolStripMenuItem";
            this.warningErrorConditionsToolStripMenuItem.Size = new System.Drawing.Size(347, 22);
            this.warningErrorConditionsToolStripMenuItem.Text = "030 Warning/Error Conditions                    ";
            // 
            // presenceOfXPulseToolStripMenuItem
            // 
            this.presenceOfXPulseToolStripMenuItem.Enabled = false;
            this.presenceOfXPulseToolStripMenuItem.Name = "presenceOfXPulseToolStripMenuItem";
            this.presenceOfXPulseToolStripMenuItem.Size = new System.Drawing.Size(347, 22);
            this.presenceOfXPulseToolStripMenuItem.Text = "150 Presence of X-Pulse                         ";
            // 
            // cAT002ToolStripMenuItem
            // 
            this.cAT002ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.messageTypeToolStripMenuItem,
            this.sectorNumberToolStripMenuItem,
            this.timeOfDayToolStripMenuItem,
            this.antennaRotationPeriodToolStripMenuItem,
            this.stationConfigurationStatusToolStripMenuItem,
            this.stationProcessingModeToolStripMenuItem,
            this.plotCountValuesToolStripMenuItem,
            this.dynamicWindowType1ToolStripMenuItem,
            this.collimationErrorToolStripMenuItem,
            this.warningErrorConditionsToolStripMenuItem1});
            this.cAT002ToolStripMenuItem.Name = "cAT002ToolStripMenuItem";
            this.cAT002ToolStripMenuItem.Size = new System.Drawing.Size(115, 22);
            this.cAT002ToolStripMenuItem.Text = "CAT002";
            // 
            // messageTypeToolStripMenuItem
            // 
            this.messageTypeToolStripMenuItem.Name = "messageTypeToolStripMenuItem";
            this.messageTypeToolStripMenuItem.Size = new System.Drawing.Size(244, 22);
            this.messageTypeToolStripMenuItem.Text = "000 Message Type";
            this.messageTypeToolStripMenuItem.Click += new System.EventHandler(this.CAT02MessageTypeToolStripMenuItem_Click);
            // 
            // sectorNumberToolStripMenuItem
            // 
            this.sectorNumberToolStripMenuItem.Name = "sectorNumberToolStripMenuItem";
            this.sectorNumberToolStripMenuItem.Size = new System.Drawing.Size(244, 22);
            this.sectorNumberToolStripMenuItem.Text = "020 Sector Number";
            this.sectorNumberToolStripMenuItem.Click += new System.EventHandler(this.sectorNumberToolStripMenuItem_Click);
            // 
            // timeOfDayToolStripMenuItem
            // 
            this.timeOfDayToolStripMenuItem.Name = "timeOfDayToolStripMenuItem";
            this.timeOfDayToolStripMenuItem.Size = new System.Drawing.Size(244, 22);
            this.timeOfDayToolStripMenuItem.Text = "030 Time of Day";
            this.timeOfDayToolStripMenuItem.Click += new System.EventHandler(this.timeOfDayToolStripMenuItem_Click);
            // 
            // antennaRotationPeriodToolStripMenuItem
            // 
            this.antennaRotationPeriodToolStripMenuItem.Name = "antennaRotationPeriodToolStripMenuItem";
            this.antennaRotationPeriodToolStripMenuItem.Size = new System.Drawing.Size(244, 22);
            this.antennaRotationPeriodToolStripMenuItem.Text = "041 Antenna Rotation Period";
            this.antennaRotationPeriodToolStripMenuItem.Click += new System.EventHandler(this.antennaRotationPeriodToolStripMenuItem_Click);
            // 
            // stationConfigurationStatusToolStripMenuItem
            // 
            this.stationConfigurationStatusToolStripMenuItem.Enabled = false;
            this.stationConfigurationStatusToolStripMenuItem.Name = "stationConfigurationStatusToolStripMenuItem";
            this.stationConfigurationStatusToolStripMenuItem.Size = new System.Drawing.Size(244, 22);
            this.stationConfigurationStatusToolStripMenuItem.Text = "050 Station Configuration Status";
            // 
            // stationProcessingModeToolStripMenuItem
            // 
            this.stationProcessingModeToolStripMenuItem.Enabled = false;
            this.stationProcessingModeToolStripMenuItem.Name = "stationProcessingModeToolStripMenuItem";
            this.stationProcessingModeToolStripMenuItem.Size = new System.Drawing.Size(244, 22);
            this.stationProcessingModeToolStripMenuItem.Text = "060 Station Processing Mode";
            // 
            // plotCountValuesToolStripMenuItem
            // 
            this.plotCountValuesToolStripMenuItem.Enabled = false;
            this.plotCountValuesToolStripMenuItem.Name = "plotCountValuesToolStripMenuItem";
            this.plotCountValuesToolStripMenuItem.Size = new System.Drawing.Size(244, 22);
            this.plotCountValuesToolStripMenuItem.Text = "070 Plot Count Values";
            // 
            // dynamicWindowType1ToolStripMenuItem
            // 
            this.dynamicWindowType1ToolStripMenuItem.Enabled = false;
            this.dynamicWindowType1ToolStripMenuItem.Name = "dynamicWindowType1ToolStripMenuItem";
            this.dynamicWindowType1ToolStripMenuItem.Size = new System.Drawing.Size(244, 22);
            this.dynamicWindowType1ToolStripMenuItem.Text = "100 Dynamic Window - Type 1";
            // 
            // collimationErrorToolStripMenuItem
            // 
            this.collimationErrorToolStripMenuItem.Enabled = false;
            this.collimationErrorToolStripMenuItem.Name = "collimationErrorToolStripMenuItem";
            this.collimationErrorToolStripMenuItem.Size = new System.Drawing.Size(244, 22);
            this.collimationErrorToolStripMenuItem.Text = "090 Collimation Error";
            // 
            // warningErrorConditionsToolStripMenuItem1
            // 
            this.warningErrorConditionsToolStripMenuItem1.Enabled = false;
            this.warningErrorConditionsToolStripMenuItem1.Name = "warningErrorConditionsToolStripMenuItem1";
            this.warningErrorConditionsToolStripMenuItem1.Size = new System.Drawing.Size(244, 22);
            this.warningErrorConditionsToolStripMenuItem1.Text = "080 Warning/Error Conditions";
            // 
            // cAT008ToolStripMenuItem1
            // 
            this.cAT008ToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.messageTypeToolStripMenuItem1,
            this.vectorQualifierToolStripMenuItem,
            this.sequenceOfCartesianVectorsInSPFNotationToolStripMenuItem,
            this.sequenceOfPolarVectorsInSPFNotationToolStripMenuItem,
            this.contourIdentifier040ContourIdentifierToolStripMenuItem,
            this.sequenceOfContourPointsInSPFNotationToolStripMenuItem,
            this.timeOfDayToolStripMenuItem1,
            this.processingStatusToolStripMenuItem,
            this.stationConfigurationStatusToolStripMenuItem1,
            this.totalNumberOfItemsConstitutingOneWeatherPictureToolStripMenuItem,
            this.sequenceOfWeatherVectorsInSPFNotationToolStripMenuItem});
            this.cAT008ToolStripMenuItem1.Enabled = false;
            this.cAT008ToolStripMenuItem1.Name = "cAT008ToolStripMenuItem1";
            this.cAT008ToolStripMenuItem1.Size = new System.Drawing.Size(115, 22);
            this.cAT008ToolStripMenuItem1.Text = "CAT008";
            // 
            // messageTypeToolStripMenuItem1
            // 
            this.messageTypeToolStripMenuItem1.Name = "messageTypeToolStripMenuItem1";
            this.messageTypeToolStripMenuItem1.Size = new System.Drawing.Size(402, 22);
            this.messageTypeToolStripMenuItem1.Text = "000   Message Type";
            this.messageTypeToolStripMenuItem1.Click += new System.EventHandler(this.messageTypeToolStripMenuItem1_Click);
            // 
            // vectorQualifierToolStripMenuItem
            // 
            this.vectorQualifierToolStripMenuItem.Name = "vectorQualifierToolStripMenuItem";
            this.vectorQualifierToolStripMenuItem.Size = new System.Drawing.Size(402, 22);
            this.vectorQualifierToolStripMenuItem.Text = "020   Vector Qualifier";
            // 
            // sequenceOfCartesianVectorsInSPFNotationToolStripMenuItem
            // 
            this.sequenceOfCartesianVectorsInSPFNotationToolStripMenuItem.Name = "sequenceOfCartesianVectorsInSPFNotationToolStripMenuItem";
            this.sequenceOfCartesianVectorsInSPFNotationToolStripMenuItem.Size = new System.Drawing.Size(402, 22);
            this.sequenceOfCartesianVectorsInSPFNotationToolStripMenuItem.Text = "036   Sequence of Cartesian Vectors in SPF Notation";
            // 
            // sequenceOfPolarVectorsInSPFNotationToolStripMenuItem
            // 
            this.sequenceOfPolarVectorsInSPFNotationToolStripMenuItem.Name = "sequenceOfPolarVectorsInSPFNotationToolStripMenuItem";
            this.sequenceOfPolarVectorsInSPFNotationToolStripMenuItem.Size = new System.Drawing.Size(402, 22);
            this.sequenceOfPolarVectorsInSPFNotationToolStripMenuItem.Text = "034   Sequence of Polar Vectors in SPF Notation";
            // 
            // contourIdentifier040ContourIdentifierToolStripMenuItem
            // 
            this.contourIdentifier040ContourIdentifierToolStripMenuItem.Name = "contourIdentifier040ContourIdentifierToolStripMenuItem";
            this.contourIdentifier040ContourIdentifierToolStripMenuItem.Size = new System.Drawing.Size(402, 22);
            this.contourIdentifier040ContourIdentifierToolStripMenuItem.Text = "040   Contour Identifier                                         ";
            this.contourIdentifier040ContourIdentifierToolStripMenuItem.Click += new System.EventHandler(this.contourIdentifier040ContourIdentifierToolStripMenuItem_Click);
            // 
            // sequenceOfContourPointsInSPFNotationToolStripMenuItem
            // 
            this.sequenceOfContourPointsInSPFNotationToolStripMenuItem.Name = "sequenceOfContourPointsInSPFNotationToolStripMenuItem";
            this.sequenceOfContourPointsInSPFNotationToolStripMenuItem.Size = new System.Drawing.Size(402, 22);
            this.sequenceOfContourPointsInSPFNotationToolStripMenuItem.Text = "050   Sequence of Contour Points in SPF Notation";
            // 
            // timeOfDayToolStripMenuItem1
            // 
            this.timeOfDayToolStripMenuItem1.Name = "timeOfDayToolStripMenuItem1";
            this.timeOfDayToolStripMenuItem1.Size = new System.Drawing.Size(402, 22);
            this.timeOfDayToolStripMenuItem1.Text = "090   Time of Day";
            // 
            // processingStatusToolStripMenuItem
            // 
            this.processingStatusToolStripMenuItem.Name = "processingStatusToolStripMenuItem";
            this.processingStatusToolStripMenuItem.Size = new System.Drawing.Size(402, 22);
            this.processingStatusToolStripMenuItem.Text = "100   Processing Status";
            // 
            // stationConfigurationStatusToolStripMenuItem1
            // 
            this.stationConfigurationStatusToolStripMenuItem1.Name = "stationConfigurationStatusToolStripMenuItem1";
            this.stationConfigurationStatusToolStripMenuItem1.Size = new System.Drawing.Size(402, 22);
            this.stationConfigurationStatusToolStripMenuItem1.Text = "110   Station Configuration Status";
            // 
            // totalNumberOfItemsConstitutingOneWeatherPictureToolStripMenuItem
            // 
            this.totalNumberOfItemsConstitutingOneWeatherPictureToolStripMenuItem.Name = "totalNumberOfItemsConstitutingOneWeatherPictureToolStripMenuItem";
            this.totalNumberOfItemsConstitutingOneWeatherPictureToolStripMenuItem.Size = new System.Drawing.Size(402, 22);
            this.totalNumberOfItemsConstitutingOneWeatherPictureToolStripMenuItem.Text = "120   Total Number of Items Constituting One Weather Picture";
            // 
            // sequenceOfWeatherVectorsInSPFNotationToolStripMenuItem
            // 
            this.sequenceOfWeatherVectorsInSPFNotationToolStripMenuItem.Name = "sequenceOfWeatherVectorsInSPFNotationToolStripMenuItem";
            this.sequenceOfWeatherVectorsInSPFNotationToolStripMenuItem.Size = new System.Drawing.Size(402, 22);
            this.sequenceOfWeatherVectorsInSPFNotationToolStripMenuItem.Text = "038   Sequence of Weather Vectors in SPF Notation";
            // 
            // cAT034ToolStripMenuItem
            // 
            this.cAT034ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.messageTypeToolStripMenuItem2,
            this.timeofDayToolStripMenuItem2,
            this.sectorNumberToolStripMenuItem1,
            this.antennaRotationPeriodToolStripMenuItem1,
            this.systemConfigurationAndStatusToolStripMenuItem,
            this.systemProcessingModeToolStripMenuItem,
            this.messageCountValuesToolStripMenuItem,
            this.genericPolarWindowToolStripMenuItem,
            this.dataFilterToolStripMenuItem,
            this.dPositionOfDataSourceToolStripMenuItem,
            this.collimationErrorToolStripMenuItem1});
            this.cAT034ToolStripMenuItem.Name = "cAT034ToolStripMenuItem";
            this.cAT034ToolStripMenuItem.Size = new System.Drawing.Size(115, 22);
            this.cAT034ToolStripMenuItem.Text = "CAT034";
            // 
            // messageTypeToolStripMenuItem2
            // 
            this.messageTypeToolStripMenuItem2.Name = "messageTypeToolStripMenuItem2";
            this.messageTypeToolStripMenuItem2.Size = new System.Drawing.Size(289, 22);
            this.messageTypeToolStripMenuItem2.Text = "000 Message Type                          ";
            this.messageTypeToolStripMenuItem2.Click += new System.EventHandler(this.messageTypeToolStripMenuItem2_Click);
            // 
            // timeofDayToolStripMenuItem2
            // 
            this.timeofDayToolStripMenuItem2.Name = "timeofDayToolStripMenuItem2";
            this.timeofDayToolStripMenuItem2.Size = new System.Drawing.Size(289, 22);
            this.timeofDayToolStripMenuItem2.Text = "030 Time-of-Day                           ";
            this.timeofDayToolStripMenuItem2.Click += new System.EventHandler(this.timeofDayToolStripMenuItem2_Click);
            // 
            // sectorNumberToolStripMenuItem1
            // 
            this.sectorNumberToolStripMenuItem1.Name = "sectorNumberToolStripMenuItem1";
            this.sectorNumberToolStripMenuItem1.Size = new System.Drawing.Size(289, 22);
            this.sectorNumberToolStripMenuItem1.Text = "020 Sector Number                         ";
            this.sectorNumberToolStripMenuItem1.Click += new System.EventHandler(this.sectorNumberToolStripMenuItem1_Click);
            // 
            // antennaRotationPeriodToolStripMenuItem1
            // 
            this.antennaRotationPeriodToolStripMenuItem1.Name = "antennaRotationPeriodToolStripMenuItem1";
            this.antennaRotationPeriodToolStripMenuItem1.Size = new System.Drawing.Size(289, 22);
            this.antennaRotationPeriodToolStripMenuItem1.Text = "041 Antenna Rotation Period               ";
            this.antennaRotationPeriodToolStripMenuItem1.Click += new System.EventHandler(this.antennaRotationPeriodToolStripMenuItem1_Click);
            // 
            // systemConfigurationAndStatusToolStripMenuItem
            // 
            this.systemConfigurationAndStatusToolStripMenuItem.Name = "systemConfigurationAndStatusToolStripMenuItem";
            this.systemConfigurationAndStatusToolStripMenuItem.Size = new System.Drawing.Size(289, 22);
            this.systemConfigurationAndStatusToolStripMenuItem.Text = "050 System Configuration and Status       ";
            this.systemConfigurationAndStatusToolStripMenuItem.Click += new System.EventHandler(this.systemConfigurationAndStatusToolStripMenuItem_Click);
            // 
            // systemProcessingModeToolStripMenuItem
            // 
            this.systemProcessingModeToolStripMenuItem.Enabled = false;
            this.systemProcessingModeToolStripMenuItem.Name = "systemProcessingModeToolStripMenuItem";
            this.systemProcessingModeToolStripMenuItem.Size = new System.Drawing.Size(289, 22);
            this.systemProcessingModeToolStripMenuItem.Text = "060 System Processing Mode                ";
            // 
            // messageCountValuesToolStripMenuItem
            // 
            this.messageCountValuesToolStripMenuItem.Enabled = false;
            this.messageCountValuesToolStripMenuItem.Name = "messageCountValuesToolStripMenuItem";
            this.messageCountValuesToolStripMenuItem.Size = new System.Drawing.Size(289, 22);
            this.messageCountValuesToolStripMenuItem.Text = "070 Message Count Values";
            // 
            // genericPolarWindowToolStripMenuItem
            // 
            this.genericPolarWindowToolStripMenuItem.Enabled = false;
            this.genericPolarWindowToolStripMenuItem.Name = "genericPolarWindowToolStripMenuItem";
            this.genericPolarWindowToolStripMenuItem.Size = new System.Drawing.Size(289, 22);
            this.genericPolarWindowToolStripMenuItem.Text = "100 Generic Polar Window                  ";
            // 
            // dataFilterToolStripMenuItem
            // 
            this.dataFilterToolStripMenuItem.Enabled = false;
            this.dataFilterToolStripMenuItem.Name = "dataFilterToolStripMenuItem";
            this.dataFilterToolStripMenuItem.Size = new System.Drawing.Size(289, 22);
            this.dataFilterToolStripMenuItem.Text = "110 Data Filter                          ";
            // 
            // dPositionOfDataSourceToolStripMenuItem
            // 
            this.dPositionOfDataSourceToolStripMenuItem.Enabled = false;
            this.dPositionOfDataSourceToolStripMenuItem.Name = "dPositionOfDataSourceToolStripMenuItem";
            this.dPositionOfDataSourceToolStripMenuItem.Size = new System.Drawing.Size(289, 22);
            this.dPositionOfDataSourceToolStripMenuItem.Text = "120 3D-Position of Data Source";
            // 
            // collimationErrorToolStripMenuItem1
            // 
            this.collimationErrorToolStripMenuItem1.Enabled = false;
            this.collimationErrorToolStripMenuItem1.Name = "collimationErrorToolStripMenuItem1";
            this.collimationErrorToolStripMenuItem1.Size = new System.Drawing.Size(289, 22);
            this.collimationErrorToolStripMenuItem1.Text = "090 Collimation Error";
            // 
            // cAT048ToolStripMenuItem
            // 
            this.cAT048ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.timeofDayToolStripMenuItem3,
            this.targetReportDescriptorToolStripMenuItem1,
            this.measuredPositionInSlantPolarCoordinatesToolStripMenuItem,
            this.mode3ACodeInOctalRepresentationToolStripMenuItem1,
            this.flightLevelInBinaryRepresentationToolStripMenuItem,
            this.radarPlotCharacteristicsToolStripMenuItem1,
            this.aircraftAddressToolStripMenuItem,
            this.aircraftIdentificationToolStripMenuItem,
            this.modeSMBDataToolStripMenuItem,
            this.trackNumberToolStripMenuItem,
            this.calculatedPositionInCartesianCoordinatesToolStripMenuItem,
            this.calculatedTrackVelocityInPolarRepresentationToolStripMenuItem,
            this.trackStatusToolStripMenuItem,
            this.trackQualityToolStripMenuItem,
            this.warningErrorConditionsToolStripMenuItem2,
            this.mode3ACodeConfidenceIndicatorToolStripMenuItem1,
            this.modeCCodeAndConfidenceIndicatorToolStripMenuItem,
            this.heightMeasuredBy3DRadarToolStripMenuItem,
            this.radialDopplerSpeedToolStripMenuItem,
            this.communicationsACASCapabilityAndFlightStatusToolStripMenuItem,
            this.aCASResolutionAdvisoryReportToolStripMenuItem,
            this.mode1CodeInOctalRepresentationToolStripMenuItem,
            this.mode1CodeConfidenceIndicatorToolStripMenuItem});
            this.cAT048ToolStripMenuItem.Name = "cAT048ToolStripMenuItem";
            this.cAT048ToolStripMenuItem.Size = new System.Drawing.Size(115, 22);
            this.cAT048ToolStripMenuItem.Text = "CAT048";
            // 
            // timeofDayToolStripMenuItem3
            // 
            this.timeofDayToolStripMenuItem3.Enabled = false;
            this.timeofDayToolStripMenuItem3.Name = "timeofDayToolStripMenuItem3";
            this.timeofDayToolStripMenuItem3.Size = new System.Drawing.Size(381, 22);
            this.timeofDayToolStripMenuItem3.Text = "140 \tTime-of-Day                                         ";
            // 
            // targetReportDescriptorToolStripMenuItem1
            // 
            this.targetReportDescriptorToolStripMenuItem1.Name = "targetReportDescriptorToolStripMenuItem1";
            this.targetReportDescriptorToolStripMenuItem1.Size = new System.Drawing.Size(381, 22);
            this.targetReportDescriptorToolStripMenuItem1.Text = "020 \tTarget Report Descriptor ";
            this.targetReportDescriptorToolStripMenuItem1.Click += new System.EventHandler(this.targetReportDescriptorToolStripMenuItem1_Click);
            // 
            // measuredPositionInSlantPolarCoordinatesToolStripMenuItem
            // 
            this.measuredPositionInSlantPolarCoordinatesToolStripMenuItem.Name = "measuredPositionInSlantPolarCoordinatesToolStripMenuItem";
            this.measuredPositionInSlantPolarCoordinatesToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.measuredPositionInSlantPolarCoordinatesToolStripMenuItem.Text = "040 \tMeasured Position in Slant Polar Coordinates        ";
            this.measuredPositionInSlantPolarCoordinatesToolStripMenuItem.Click += new System.EventHandler(this.measuredPositionInSlantPolarCoordinatesToolStripMenuItem_Click);
            // 
            // mode3ACodeInOctalRepresentationToolStripMenuItem1
            // 
            this.mode3ACodeInOctalRepresentationToolStripMenuItem1.Name = "mode3ACodeInOctalRepresentationToolStripMenuItem1";
            this.mode3ACodeInOctalRepresentationToolStripMenuItem1.Size = new System.Drawing.Size(381, 22);
            this.mode3ACodeInOctalRepresentationToolStripMenuItem1.Text = "070 \tMode-3/A Code in Octal Representation               ";
            this.mode3ACodeInOctalRepresentationToolStripMenuItem1.Click += new System.EventHandler(this.mode3ACodeInOctalRepresentationToolStripMenuItem1_Click);
            // 
            // flightLevelInBinaryRepresentationToolStripMenuItem
            // 
            this.flightLevelInBinaryRepresentationToolStripMenuItem.Name = "flightLevelInBinaryRepresentationToolStripMenuItem";
            this.flightLevelInBinaryRepresentationToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.flightLevelInBinaryRepresentationToolStripMenuItem.Text = "090 \tFlight Level in Binary Representation               ";
            this.flightLevelInBinaryRepresentationToolStripMenuItem.Click += new System.EventHandler(this.flightLevelInBinaryRepresentationToolStripMenuItem_Click);
            // 
            // radarPlotCharacteristicsToolStripMenuItem1
            // 
            this.radarPlotCharacteristicsToolStripMenuItem1.Enabled = false;
            this.radarPlotCharacteristicsToolStripMenuItem1.Name = "radarPlotCharacteristicsToolStripMenuItem1";
            this.radarPlotCharacteristicsToolStripMenuItem1.Size = new System.Drawing.Size(381, 22);
            this.radarPlotCharacteristicsToolStripMenuItem1.Text = "130 \tRadar Plot Characteristics                          ";
            this.radarPlotCharacteristicsToolStripMenuItem1.Click += new System.EventHandler(this.radarPlotCharacteristicsToolStripMenuItem1_Click);
            // 
            // aircraftAddressToolStripMenuItem
            // 
            this.aircraftAddressToolStripMenuItem.Enabled = false;
            this.aircraftAddressToolStripMenuItem.Name = "aircraftAddressToolStripMenuItem";
            this.aircraftAddressToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.aircraftAddressToolStripMenuItem.Text = "220 \tAircraft Address                                    ";
            this.aircraftAddressToolStripMenuItem.Click += new System.EventHandler(this.aircraftAddressToolStripMenuItem_Click);
            // 
            // aircraftIdentificationToolStripMenuItem
            // 
            this.aircraftIdentificationToolStripMenuItem.Name = "aircraftIdentificationToolStripMenuItem";
            this.aircraftIdentificationToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.aircraftIdentificationToolStripMenuItem.Text = "240 \tAircraft Identification                             ";
            this.aircraftIdentificationToolStripMenuItem.Click += new System.EventHandler(this.aircraftIdentificationToolStripMenuItem_Click);
            // 
            // modeSMBDataToolStripMenuItem
            // 
            this.modeSMBDataToolStripMenuItem.Enabled = false;
            this.modeSMBDataToolStripMenuItem.Name = "modeSMBDataToolStripMenuItem";
            this.modeSMBDataToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.modeSMBDataToolStripMenuItem.Text = "250 \tMode S MB Data                                      ";
            // 
            // trackNumberToolStripMenuItem
            // 
            this.trackNumberToolStripMenuItem.Enabled = false;
            this.trackNumberToolStripMenuItem.Name = "trackNumberToolStripMenuItem";
            this.trackNumberToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.trackNumberToolStripMenuItem.Text = "161 \tTrack Number                                        ";
            // 
            // calculatedPositionInCartesianCoordinatesToolStripMenuItem
            // 
            this.calculatedPositionInCartesianCoordinatesToolStripMenuItem.Enabled = false;
            this.calculatedPositionInCartesianCoordinatesToolStripMenuItem.Name = "calculatedPositionInCartesianCoordinatesToolStripMenuItem";
            this.calculatedPositionInCartesianCoordinatesToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.calculatedPositionInCartesianCoordinatesToolStripMenuItem.Text = "042 \tCalculated Position in Cartesian Coordinates        ";
            // 
            // calculatedTrackVelocityInPolarRepresentationToolStripMenuItem
            // 
            this.calculatedTrackVelocityInPolarRepresentationToolStripMenuItem.Enabled = false;
            this.calculatedTrackVelocityInPolarRepresentationToolStripMenuItem.Name = "calculatedTrackVelocityInPolarRepresentationToolStripMenuItem";
            this.calculatedTrackVelocityInPolarRepresentationToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.calculatedTrackVelocityInPolarRepresentationToolStripMenuItem.Text = "200 \tCalculated Track Velocity in Polar Representation   ";
            // 
            // trackStatusToolStripMenuItem
            // 
            this.trackStatusToolStripMenuItem.Enabled = false;
            this.trackStatusToolStripMenuItem.Name = "trackStatusToolStripMenuItem";
            this.trackStatusToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.trackStatusToolStripMenuItem.Text = "170 \tTrack Status                                        ";
            // 
            // trackQualityToolStripMenuItem
            // 
            this.trackQualityToolStripMenuItem.Enabled = false;
            this.trackQualityToolStripMenuItem.Name = "trackQualityToolStripMenuItem";
            this.trackQualityToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.trackQualityToolStripMenuItem.Text = "210 \tTrack Quality                                       ";
            // 
            // warningErrorConditionsToolStripMenuItem2
            // 
            this.warningErrorConditionsToolStripMenuItem2.Enabled = false;
            this.warningErrorConditionsToolStripMenuItem2.Name = "warningErrorConditionsToolStripMenuItem2";
            this.warningErrorConditionsToolStripMenuItem2.Size = new System.Drawing.Size(381, 22);
            this.warningErrorConditionsToolStripMenuItem2.Text = "030 \tWarning/Error Conditions                            ";
            // 
            // mode3ACodeConfidenceIndicatorToolStripMenuItem1
            // 
            this.mode3ACodeConfidenceIndicatorToolStripMenuItem1.Enabled = false;
            this.mode3ACodeConfidenceIndicatorToolStripMenuItem1.Name = "mode3ACodeConfidenceIndicatorToolStripMenuItem1";
            this.mode3ACodeConfidenceIndicatorToolStripMenuItem1.Size = new System.Drawing.Size(381, 22);
            this.mode3ACodeConfidenceIndicatorToolStripMenuItem1.Text = "080 \tMode-3/A Code Confidence Indicator                  ";
            // 
            // modeCCodeAndConfidenceIndicatorToolStripMenuItem
            // 
            this.modeCCodeAndConfidenceIndicatorToolStripMenuItem.Enabled = false;
            this.modeCCodeAndConfidenceIndicatorToolStripMenuItem.Name = "modeCCodeAndConfidenceIndicatorToolStripMenuItem";
            this.modeCCodeAndConfidenceIndicatorToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.modeCCodeAndConfidenceIndicatorToolStripMenuItem.Text = "100 \tMode-C Code and Confidence Indicator                ";
            // 
            // heightMeasuredBy3DRadarToolStripMenuItem
            // 
            this.heightMeasuredBy3DRadarToolStripMenuItem.Enabled = false;
            this.heightMeasuredBy3DRadarToolStripMenuItem.Name = "heightMeasuredBy3DRadarToolStripMenuItem";
            this.heightMeasuredBy3DRadarToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.heightMeasuredBy3DRadarToolStripMenuItem.Text = "110 \tHeight Measured by 3D Radar                         ";
            // 
            // radialDopplerSpeedToolStripMenuItem
            // 
            this.radialDopplerSpeedToolStripMenuItem.Enabled = false;
            this.radialDopplerSpeedToolStripMenuItem.Name = "radialDopplerSpeedToolStripMenuItem";
            this.radialDopplerSpeedToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.radialDopplerSpeedToolStripMenuItem.Text = "120 \tRadial Doppler Speed                                ";
            // 
            // communicationsACASCapabilityAndFlightStatusToolStripMenuItem
            // 
            this.communicationsACASCapabilityAndFlightStatusToolStripMenuItem.Enabled = false;
            this.communicationsACASCapabilityAndFlightStatusToolStripMenuItem.Name = "communicationsACASCapabilityAndFlightStatusToolStripMenuItem";
            this.communicationsACASCapabilityAndFlightStatusToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.communicationsACASCapabilityAndFlightStatusToolStripMenuItem.Text = "230 \tCommunications / ACAS Capability and Flight Status  ";
            // 
            // aCASResolutionAdvisoryReportToolStripMenuItem
            // 
            this.aCASResolutionAdvisoryReportToolStripMenuItem.Enabled = false;
            this.aCASResolutionAdvisoryReportToolStripMenuItem.Name = "aCASResolutionAdvisoryReportToolStripMenuItem";
            this.aCASResolutionAdvisoryReportToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.aCASResolutionAdvisoryReportToolStripMenuItem.Text = "260 \tACAS Resolution Advisory Report                     ";
            // 
            // mode1CodeInOctalRepresentationToolStripMenuItem
            // 
            this.mode1CodeInOctalRepresentationToolStripMenuItem.Enabled = false;
            this.mode1CodeInOctalRepresentationToolStripMenuItem.Name = "mode1CodeInOctalRepresentationToolStripMenuItem";
            this.mode1CodeInOctalRepresentationToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.mode1CodeInOctalRepresentationToolStripMenuItem.Text = "55 \t    Mode-1 Code in Octal Representation                 ";
            this.mode1CodeInOctalRepresentationToolStripMenuItem.Click += new System.EventHandler(this.mode1CodeInOctalRepresentationToolStripMenuItem_Click);
            // 
            // mode1CodeConfidenceIndicatorToolStripMenuItem
            // 
            this.mode1CodeConfidenceIndicatorToolStripMenuItem.Enabled = false;
            this.mode1CodeConfidenceIndicatorToolStripMenuItem.Name = "mode1CodeConfidenceIndicatorToolStripMenuItem";
            this.mode1CodeConfidenceIndicatorToolStripMenuItem.Size = new System.Drawing.Size(381, 22);
            this.mode1CodeConfidenceIndicatorToolStripMenuItem.Text = "65 \t    Mode-1 Code Confidence Indicator";
            // 
            // cAT062ToolStripMenuItem
            // 
            this.cAT062ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.serviceIdentificationToolStripMenuItem,
            this.trackNumberToolStripMenuItem1,
            this.trackMode3ACodeToolStripMenuItem,
            this.calculatedTrackPositionWGS84ToolStripMenuItem,
            this.measuredFlightLevelToolStripMenuItem,
            this.aircraftDerivedDataSUBF2ACIDToolStripMenuItem});
            this.cAT062ToolStripMenuItem.Name = "cAT062ToolStripMenuItem";
            this.cAT062ToolStripMenuItem.Size = new System.Drawing.Size(115, 22);
            this.cAT062ToolStripMenuItem.Text = "CAT062";
            // 
            // serviceIdentificationToolStripMenuItem
            // 
            this.serviceIdentificationToolStripMenuItem.Name = "serviceIdentificationToolStripMenuItem";
            this.serviceIdentificationToolStripMenuItem.Size = new System.Drawing.Size(288, 22);
            this.serviceIdentificationToolStripMenuItem.Text = "015 Service Identification";
            this.serviceIdentificationToolStripMenuItem.Click += new System.EventHandler(this.serviceIdentificationToolStripMenuItem_Click);
            // 
            // trackNumberToolStripMenuItem1
            // 
            this.trackNumberToolStripMenuItem1.Name = "trackNumberToolStripMenuItem1";
            this.trackNumberToolStripMenuItem1.Size = new System.Drawing.Size(288, 22);
            this.trackNumberToolStripMenuItem1.Text = "040 Track Number";
            this.trackNumberToolStripMenuItem1.Click += new System.EventHandler(this.trackNumberToolStripMenuItem1_Click);
            // 
            // trackMode3ACodeToolStripMenuItem
            // 
            this.trackMode3ACodeToolStripMenuItem.Name = "trackMode3ACodeToolStripMenuItem";
            this.trackMode3ACodeToolStripMenuItem.Size = new System.Drawing.Size(288, 22);
            this.trackMode3ACodeToolStripMenuItem.Text = "060 Track Mode 3/A Code ";
            this.trackMode3ACodeToolStripMenuItem.Click += new System.EventHandler(this.trackMode3ACodeToolStripMenuItem_Click);
            // 
            // calculatedTrackPositionWGS84ToolStripMenuItem
            // 
            this.calculatedTrackPositionWGS84ToolStripMenuItem.Name = "calculatedTrackPositionWGS84ToolStripMenuItem";
            this.calculatedTrackPositionWGS84ToolStripMenuItem.Size = new System.Drawing.Size(288, 22);
            this.calculatedTrackPositionWGS84ToolStripMenuItem.Text = "105 Calculated Track Position (WGS-84)";
            this.calculatedTrackPositionWGS84ToolStripMenuItem.Click += new System.EventHandler(this.calculatedTrackPositionWGS84ToolStripMenuItem_Click);
            // 
            // measuredFlightLevelToolStripMenuItem
            // 
            this.measuredFlightLevelToolStripMenuItem.Name = "measuredFlightLevelToolStripMenuItem";
            this.measuredFlightLevelToolStripMenuItem.Size = new System.Drawing.Size(288, 22);
            this.measuredFlightLevelToolStripMenuItem.Text = "136 Measured Flight Level";
            this.measuredFlightLevelToolStripMenuItem.Click += new System.EventHandler(this.measuredFlightLevelToolStripMenuItem_Click);
            // 
            // aircraftDerivedDataSUBF2ACIDToolStripMenuItem
            // 
            this.aircraftDerivedDataSUBF2ACIDToolStripMenuItem.Name = "aircraftDerivedDataSUBF2ACIDToolStripMenuItem";
            this.aircraftDerivedDataSUBF2ACIDToolStripMenuItem.Size = new System.Drawing.Size(288, 22);
            this.aircraftDerivedDataSUBF2ACIDToolStripMenuItem.Text = "380 Aircraft Derived Data SUBF#2 - ACID ";
            this.aircraftDerivedDataSUBF2ACIDToolStripMenuItem.Click += new System.EventHandler(this.aircraftDerivedDataSUBF2ACIDToolStripMenuItem_Click);
            // 
            // cAT063ToolStripMenuItem1
            // 
            this.cAT063ToolStripMenuItem1.Enabled = false;
            this.cAT063ToolStripMenuItem1.Name = "cAT063ToolStripMenuItem1";
            this.cAT063ToolStripMenuItem1.Size = new System.Drawing.Size(115, 22);
            this.cAT063ToolStripMenuItem1.Text = "CAT063";
            // 
            // cAT065ToolStripMenuItem
            // 
            this.cAT065ToolStripMenuItem.Enabled = false;
            this.cAT065ToolStripMenuItem.Name = "cAT065ToolStripMenuItem";
            this.cAT065ToolStripMenuItem.Size = new System.Drawing.Size(115, 22);
            this.cAT065ToolStripMenuItem.Text = "CAT065";
            // 
            // cAT244ToolStripMenuItem
            // 
            this.cAT244ToolStripMenuItem.Enabled = false;
            this.cAT244ToolStripMenuItem.Name = "cAT244ToolStripMenuItem";
            this.cAT244ToolStripMenuItem.Size = new System.Drawing.Size(115, 22);
            this.cAT244ToolStripMenuItem.Text = "CAT244";
            // 
            // dataBySSRCodeToolStripMenuItem
            // 
            this.dataBySSRCodeToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.viewToolStripMenuItem});
            this.dataBySSRCodeToolStripMenuItem.ForeColor = System.Drawing.Color.Silver;
            this.dataBySSRCodeToolStripMenuItem.Name = "dataBySSRCodeToolStripMenuItem";
            this.dataBySSRCodeToolStripMenuItem.Size = new System.Drawing.Size(111, 20);
            this.dataBySSRCodeToolStripMenuItem.Text = "View by SSR code";
            // 
            // viewToolStripMenuItem
            // 
            this.viewToolStripMenuItem.Name = "viewToolStripMenuItem";
            this.viewToolStripMenuItem.Size = new System.Drawing.Size(99, 22);
            this.viewToolStripMenuItem.Text = "View";
            this.viewToolStripMenuItem.Click += new System.EventHandler(this.viewToolStripMenuItem_Click);
            // 
            // googleEarthToolStripMenuItem
            // 
            this.googleEarthToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.exportToolStripMenuItem,
            this.settingsToolStripMenuItem1});
            this.googleEarthToolStripMenuItem.ForeColor = System.Drawing.Color.Silver;
            this.googleEarthToolStripMenuItem.Name = "googleEarthToolStripMenuItem";
            this.googleEarthToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
            this.googleEarthToolStripMenuItem.Text = "Export";
            // 
            // exportToolStripMenuItem
            // 
            this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
            this.exportToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
            this.exportToolStripMenuItem.Text = "Earth Plot";
            this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
            // 
            // settingsToolStripMenuItem1
            // 
            this.settingsToolStripMenuItem1.Name = "settingsToolStripMenuItem1";
            this.settingsToolStripMenuItem1.Size = new System.Drawing.Size(125, 22);
            this.settingsToolStripMenuItem1.Text = "GePath";
            this.settingsToolStripMenuItem1.Click += new System.EventHandler(this.settingsToolStripMenuItem1_Click);
            // 
            // aboutToolStripMenuItem
            // 
            this.aboutToolStripMenuItem.ForeColor = System.Drawing.Color.Silver;
            this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
            this.aboutToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
            this.aboutToolStripMenuItem.Text = "About";
            this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
            // 
            // buttonStopRun
            // 
            this.buttonStopRun.BackColor = System.Drawing.Color.DarkGray;
            this.buttonStopRun.Enabled = false;
            this.buttonStopRun.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.buttonStopRun.Location = new System.Drawing.Point(290, 8);
            this.buttonStopRun.Name = "buttonStopRun";
            this.buttonStopRun.Size = new System.Drawing.Size(81, 23);
            this.buttonStopRun.TabIndex = 16;
            this.buttonStopRun.Text = "Stopped";
            this.buttonStopRun.UseVisualStyleBackColor = false;
            this.buttonStopRun.Click += new System.EventHandler(this.button1_Click);
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(79, 44);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(89, 13);
            this.label7.TabIndex = 17;
            this.label7.Text = "Multicast IP/Port:";
            // 
            // labelConnIpAndPort
            // 
            this.labelConnIpAndPort.AutoSize = true;
            this.labelConnIpAndPort.Location = new System.Drawing.Point(180, 43);
            this.labelConnIpAndPort.Name = "labelConnIpAndPort";
            this.labelConnIpAndPort.Size = new System.Drawing.Size(56, 13);
            this.labelConnIpAndPort.TabIndex = 18;
            this.labelConnIpAndPort.Text = "N/A : N/A";
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(79, 11);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(95, 13);
            this.label8.TabIndex = 19;
            this.label8.Text = "Connection Name:";
            // 
            // labelActiveConnName
            // 
            this.labelActiveConnName.AutoSize = true;
            this.labelActiveConnName.Location = new System.Drawing.Point(180, 11);
            this.labelActiveConnName.Name = "labelActiveConnName";
            this.labelActiveConnName.Size = new System.Drawing.Size(27, 13);
            this.labelActiveConnName.TabIndex = 20;
            this.labelActiveConnName.Text = "N/A";
            // 
            // progressBar1
            // 
            this.progressBar1.Location = new System.Drawing.Point(290, 39);
            this.progressBar1.Name = "progressBar1";
            this.progressBar1.Size = new System.Drawing.Size(81, 13);
            this.progressBar1.TabIndex = 21;
            // 
            // PlotandTrackDisplayUpdateTimer
            // 
            this.PlotandTrackDisplayUpdateTimer.Interval = 4000;
            this.PlotandTrackDisplayUpdateTimer.Tick += new System.EventHandler(this.PlotDisplayTimer_Tick);
            // 
            // StaticDisplayTimer
            // 
            this.StaticDisplayTimer.Interval = 500;
            this.StaticDisplayTimer.Tick += new System.EventHandler(this.StaticDisplayTimer_Tick);
            // 
            // groupBoxConnection
            // 
            this.groupBoxConnection.Anchor = System.Windows.Forms.AnchorStyles.Right;
            this.groupBoxConnection.Controls.Add(this.labelLocalInterface);
            this.groupBoxConnection.Controls.Add(this.label16);
            this.groupBoxConnection.Controls.Add(this.btnOpenConnection);
            this.groupBoxConnection.Controls.Add(this.label8);
            this.groupBoxConnection.Controls.Add(this.buttonStopRun);
            this.groupBoxConnection.Controls.Add(this.progressBar1);
            this.groupBoxConnection.Controls.Add(this.label7);
            this.groupBoxConnection.Controls.Add(this.labelActiveConnName);
            this.groupBoxConnection.Controls.Add(this.labelConnIpAndPort);
            this.groupBoxConnection.ForeColor = System.Drawing.Color.White;
            this.groupBoxConnection.Location = new System.Drawing.Point(798, -20);
            this.groupBoxConnection.Name = "groupBoxConnection";
            this.groupBoxConnection.Size = new System.Drawing.Size(384, 60);
            this.groupBoxConnection.TabIndex = 23;
            this.groupBoxConnection.TabStop = false;
            this.groupBoxConnection.Text = "Connection";
            // 
            // labelLocalInterface
            // 
            this.labelLocalInterface.AutoSize = true;
            this.labelLocalInterface.Location = new System.Drawing.Point(180, 27);
            this.labelLocalInterface.Name = "labelLocalInterface";
            this.labelLocalInterface.Size = new System.Drawing.Size(27, 13);
            this.labelLocalInterface.TabIndex = 27;
            this.labelLocalInterface.Text = "N/A";
            // 
            // label16
            // 
            this.label16.AutoSize = true;
            this.label16.Location = new System.Drawing.Point(79, 28);
            this.label16.Name = "label16";
            this.label16.Size = new System.Drawing.Size(81, 13);
            this.label16.TabIndex = 26;
            this.label16.Text = "Local Interface:";
            // 
            // btnOpenConnection
            // 
            this.btnOpenConnection.BackColor = System.Drawing.Color.DarkGray;
            this.btnOpenConnection.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnOpenConnection.Location = new System.Drawing.Point(6, 14);
            this.btnOpenConnection.Name = "btnOpenConnection";
            this.btnOpenConnection.Size = new System.Drawing.Size(67, 21);
            this.btnOpenConnection.TabIndex = 22;
            this.btnOpenConnection.Text = "OPEN";
            this.btnOpenConnection.UseVisualStyleBackColor = false;
            this.btnOpenConnection.Click += new System.EventHandler(this.button8_Click);
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.label9.ForeColor = System.Drawing.Color.White;
            this.label9.Location = new System.Drawing.Point(22, 18);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(42, 13);
            this.label9.TabIndex = 25;
            this.label9.Text = "Record";
            // 
            // checkBoxRecording
            // 
            this.checkBoxRecording.AutoSize = true;
            this.checkBoxRecording.Enabled = false;
            this.checkBoxRecording.ForeColor = System.Drawing.Color.White;
            this.checkBoxRecording.Location = new System.Drawing.Point(5, 18);
            this.checkBoxRecording.Name = "checkBoxRecording";
            this.checkBoxRecording.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            this.checkBoxRecording.Size = new System.Drawing.Size(15, 14);
            this.checkBoxRecording.TabIndex = 24;
            this.checkBoxRecording.UseVisualStyleBackColor = true;
            this.checkBoxRecording.CheckedChanged += new System.EventHandler(this.checkBoxRecording_CheckedChanged);
            // 
            // tabPlotDisplay
            // 
            this.tabPlotDisplay.BackColor = System.Drawing.SystemColors.Desktop;
            this.tabPlotDisplay.Controls.Add(this.labelLat_Long);
            this.tabPlotDisplay.Controls.Add(this.labelFrozeDisplay);
            this.tabPlotDisplay.Controls.Add(gMapControl);
            this.tabPlotDisplay.Controls.Add(this.labelTargetCount);
            this.tabPlotDisplay.Controls.Add(this.lblNumberofTargets);
            this.tabPlotDisplay.Controls.Add(this.groupBox2);
            this.tabPlotDisplay.Controls.Add(this.groupBox1);
            this.tabPlotDisplay.Controls.Add(this.lblZoomLevel);
            this.tabPlotDisplay.Controls.Add(this.label13);
            this.tabPlotDisplay.Controls.Add(this.comboBoxMapType);
            this.tabPlotDisplay.Controls.Add(this.button7);
            this.tabPlotDisplay.Controls.Add(this.button6);
            this.tabPlotDisplay.Controls.Add(this.button5);
            this.tabPlotDisplay.Controls.Add(this.button4);
            this.tabPlotDisplay.Controls.Add(this.button3);
            this.tabPlotDisplay.Controls.Add(this.label12);
            this.tabPlotDisplay.Controls.Add(this.button2);
            this.tabPlotDisplay.Controls.Add(this.button1);
            this.tabPlotDisplay.Controls.Add(this.groupBox3);
            this.tabPlotDisplay.ForeColor = System.Drawing.Color.White;
            this.tabPlotDisplay.Location = new System.Drawing.Point(4, 22);
            this.tabPlotDisplay.Name = "tabPlotDisplay";
            this.tabPlotDisplay.Padding = new System.Windows.Forms.Padding(3);
            this.tabPlotDisplay.Size = new System.Drawing.Size(1168, 708);
            this.tabPlotDisplay.TabIndex = 1;
            this.tabPlotDisplay.Text = "Track/Plot Display";
            this.tabPlotDisplay.SizeChanged += new System.EventHandler(this.tabPlotDisplay_SizeChanged);
            this.tabPlotDisplay.Click += new System.EventHandler(this.tabPlotDisplay_Click);
            // 
            // labelLat_Long
            // 
            this.labelLat_Long.AutoSize = true;
            this.labelLat_Long.BackColor = System.Drawing.Color.Silver;
            this.labelLat_Long.ForeColor = System.Drawing.Color.Black;
            this.labelLat_Long.Location = new System.Drawing.Point(571, 695);
            this.labelLat_Long.Name = "labelLat_Long";
            this.labelLat_Long.Size = new System.Drawing.Size(27, 13);
            this.labelLat_Long.TabIndex = 27;
            this.labelLat_Long.Text = "N/A";
            // 
            // labelFrozeDisplay
            // 
            this.labelFrozeDisplay.AutoSize = true;
            this.labelFrozeDisplay.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelFrozeDisplay.ForeColor = System.Drawing.Color.Red;
            this.labelFrozeDisplay.Location = new System.Drawing.Point(542, 359);
            this.labelFrozeDisplay.Name = "labelFrozeDisplay";
            this.labelFrozeDisplay.Size = new System.Drawing.Size(263, 31);
            this.labelFrozeDisplay.TabIndex = 26;
            this.labelFrozeDisplay.Text = "FROZEN DISPLAY";
            this.labelFrozeDisplay.Visible = false;
            // 
            // gMapControl
            // 
            gMapControl.AutoSize = true;
            gMapControl.BackColor = System.Drawing.Color.White;
            gMapControl.Bearing = 0F;
            gMapControl.CanDragMap = true;
            gMapControl.ForeColor = System.Drawing.Color.Black;
            gMapControl.GrayScaleMode = false;
            gMapControl.LevelsKeepInMemmory = 5;
            gMapControl.Location = new System.Drawing.Point(139, 3);
            gMapControl.MarkersEnabled = true;
            gMapControl.MaxZoom = 2;
            gMapControl.MinZoom = 2;
            gMapControl.MouseWheelZoomType = GMap.NET.MouseWheelZoomType.MousePositionWithoutCenter;
            gMapControl.Name = "gMapControl";
            gMapControl.NegativeMode = false;
            gMapControl.PolygonsEnabled = true;
            gMapControl.RetryLoadTile = 0;
            gMapControl.RoutesEnabled = true;
            gMapControl.ShowTileGridLines = false;
            gMapControl.Size = new System.Drawing.Size(1026, 702);
            gMapControl.TabIndex = 0;
            gMapControl.Zoom = 0D;
            gMapControl.OnMarkerEnter += new GMap.NET.WindowsForms.MarkerEnter(this.gMapControl_OnMarkerEnter);
            gMapControl.OnMapDrag += new GMap.NET.MapDrag(this.gMapControl_OnMapDrag);
            gMapControl.OnMapZoomChanged += new GMap.NET.MapZoomChanged(this.gMapControl_OnMapZoomChanged);
            gMapControl.Load += new System.EventHandler(this.gMapControl_Load);
            gMapControl.MouseClick += new System.Windows.Forms.MouseEventHandler(this.gMapControl_MouseClick);
            gMapControl.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.gMapControl_MouseDoubleClick);
            gMapControl.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gMapControl_MouseDown);
            gMapControl.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gMapControl_MouseMove);
            gMapControl.MouseUp += new System.Windows.Forms.MouseEventHandler(this.gMapControl_MouseUp);
            // 
            // labelTargetCount
            // 
            this.labelTargetCount.AutoSize = true;
            this.labelTargetCount.Location = new System.Drawing.Point(6, 686);
            this.labelTargetCount.Name = "labelTargetCount";
            this.labelTargetCount.Size = new System.Drawing.Size(72, 13);
            this.labelTargetCount.TabIndex = 25;
            this.labelTargetCount.Text = "Target Count:";
            // 
            // lblNumberofTargets
            // 
            this.lblNumberofTargets.AutoSize = true;
            this.lblNumberofTargets.Location = new System.Drawing.Point(79, 686);
            this.lblNumberofTargets.Name = "lblNumberofTargets";
            this.lblNumberofTargets.Size = new System.Drawing.Size(13, 13);
            this.lblNumberofTargets.TabIndex = 24;
            this.lblNumberofTargets.Text = "0";
            // 
            // groupBox2
            // 
            this.groupBox2.BackColor = System.Drawing.Color.Black;
            this.groupBox2.Controls.Add(this.checkBoxDisplayPSR);
            this.groupBox2.Controls.Add(this.numericUpDownUpper);
            this.groupBox2.Controls.Add(this.numericUpDownLower);
            this.groupBox2.Controls.Add(this.checkBoxFLFilter);
            this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.groupBox2.ForeColor = System.Drawing.Color.Silver;
            this.groupBox2.Location = new System.Drawing.Point(6, 341);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(126, 103);
            this.groupBox2.TabIndex = 19;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "FL Filter";
            // 
            // checkBoxDisplayPSR
            // 
            this.checkBoxDisplayPSR.AutoSize = true;
            this.checkBoxDisplayPSR.BackColor = System.Drawing.Color.Transparent;
            this.checkBoxDisplayPSR.Location = new System.Drawing.Point(6, 80);
            this.checkBoxDisplayPSR.Name = "checkBoxDisplayPSR";
            this.checkBoxDisplayPSR.Size = new System.Drawing.Size(85, 17);
            this.checkBoxDisplayPSR.TabIndex = 3;
            this.checkBoxDisplayPSR.Text = "Display PSR";
            this.checkBoxDisplayPSR.UseVisualStyleBackColor = false;
            this.checkBoxDisplayPSR.CheckedChanged += new System.EventHandler(this.checkBoxDisplayPSR_CheckedChanged);
            // 
            // numericUpDownUpper
            // 
            this.numericUpDownUpper.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.numericUpDownUpper.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.numericUpDownUpper.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.numericUpDownUpper.Increment = new decimal(new int[] {
            100,
            0,
            0,
            0});
            this.numericUpDownUpper.Location = new System.Drawing.Point(76, 16);
            this.numericUpDownUpper.Maximum = new decimal(new int[] {
            700,
            0,
            0,
            0});
            this.numericUpDownUpper.Name = "numericUpDownUpper";
            this.numericUpDownUpper.Size = new System.Drawing.Size(45, 16);
            this.numericUpDownUpper.TabIndex = 2;
            this.numericUpDownUpper.Value = new decimal(new int[] {
            700,
            0,
            0,
            0});
            this.numericUpDownUpper.ValueChanged += new System.EventHandler(this.numericUpDownUpper_ValueChanged);
            // 
            // numericUpDownLower
            // 
            this.numericUpDownLower.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.numericUpDownLower.BorderStyle = System.Windows.Forms.BorderStyle.None;
            this.numericUpDownLower.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.numericUpDownLower.Increment = new decimal(new int[] {
            100,
            0,
            0,
            0});
            this.numericUpDownLower.Location = new System.Drawing.Point(76, 54);
            this.numericUpDownLower.Maximum = new decimal(new int[] {
            700,
            0,
            0,
            0});
            this.numericUpDownLower.Name = "numericUpDownLower";
            this.numericUpDownLower.Size = new System.Drawing.Size(45, 16);
            this.numericUpDownLower.TabIndex = 1;
            this.numericUpDownLower.ValueChanged += new System.EventHandler(this.numericUpDownLower_ValueChanged);
            // 
            // checkBoxFLFilter
            // 
            this.checkBoxFLFilter.AutoSize = true;
            this.checkBoxFLFilter.BackColor = System.Drawing.Color.Transparent;
            this.checkBoxFLFilter.Location = new System.Drawing.Point(6, 32);
            this.checkBoxFLFilter.Name = "checkBoxFLFilter";
            this.checkBoxFLFilter.Size = new System.Drawing.Size(67, 17);
            this.checkBoxFLFilter.TabIndex = 0;
            this.checkBoxFLFilter.Text = "Disabled";
            this.checkBoxFLFilter.UseVisualStyleBackColor = false;
            this.checkBoxFLFilter.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.lblCenterLon);
            this.groupBox1.Controls.Add(this.lblCenterLat);
            this.groupBox1.Controls.Add(this.label15);
            this.groupBox1.Controls.Add(this.label14);
            this.groupBox1.ForeColor = System.Drawing.Color.Silver;
            this.groupBox1.Location = new System.Drawing.Point(3, 479);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(129, 65);
            this.groupBox1.TabIndex = 17;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Display Center";
            // 
            // lblCenterLon
            // 
            this.lblCenterLon.AutoSize = true;
            this.lblCenterLon.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblCenterLon.Location = new System.Drawing.Point(25, 35);
            this.lblCenterLon.Name = "lblCenterLon";
            this.lblCenterLon.Size = new System.Drawing.Size(66, 13);
            this.lblCenterLon.TabIndex = 3;
            this.lblCenterLon.Text = "lblCenterLon";
            // 
            // lblCenterLat
            // 
            this.lblCenterLat.AutoSize = true;
            this.lblCenterLat.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblCenterLat.Location = new System.Drawing.Point(25, 20);
            this.lblCenterLat.Name = "lblCenterLat";
            this.lblCenterLat.Size = new System.Drawing.Size(63, 13);
            this.lblCenterLat.TabIndex = 2;
            this.lblCenterLat.Text = "lblCenterLat";
            // 
            // label15
            // 
            this.label15.AutoSize = true;
            this.label15.Location = new System.Drawing.Point(2, 35);
            this.label15.Name = "label15";
            this.label15.Size = new System.Drawing.Size(28, 13);
            this.label15.TabIndex = 1;
            this.label15.Text = "Lon:";
            // 
            // label14
            // 
            this.label14.AutoSize = true;
            this.label14.Location = new System.Drawing.Point(2, 20);
            this.label14.Name = "label14";
            this.label14.Size = new System.Drawing.Size(25, 13);
            this.label14.TabIndex = 0;
            this.label14.Text = "Lat:";
            // 
            // lblZoomLevel
            // 
            this.lblZoomLevel.AutoSize = true;
            this.lblZoomLevel.ForeColor = System.Drawing.Color.Silver;
            this.lblZoomLevel.Location = new System.Drawing.Point(60, 463);
            this.lblZoomLevel.Name = "lblZoomLevel";
            this.lblZoomLevel.Size = new System.Drawing.Size(13, 13);
            this.lblZoomLevel.TabIndex = 16;
            this.lblZoomLevel.Text = "0";
            // 
            // label13
            // 
            this.label13.AutoSize = true;
            this.label13.ForeColor = System.Drawing.Color.Silver;
            this.label13.Location = new System.Drawing.Point(8, 636);
            this.label13.Name = "label13";
            this.label13.Size = new System.Drawing.Size(55, 13);
            this.label13.TabIndex = 15;
            this.label13.Text = "Map Type";
            // 
            // comboBoxMapType
            // 
            this.comboBoxMapType.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.comboBoxMapType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxMapType.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxMapType.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.comboBoxMapType.ForeColor = System.Drawing.Color.Black;
            this.comboBoxMapType.FormattingEnabled = true;
            this.comboBoxMapType.Items.AddRange(new object[] {
            "Google Plain",
            "Google Satellite",
            "Google Terrain",
            "Google Hybrid",
            "Custom Built"});
            this.comboBoxMapType.Location = new System.Drawing.Point(8, 652);
            this.comboBoxMapType.Name = "comboBoxMapType";
            this.comboBoxMapType.Size = new System.Drawing.Size(121, 21);
            this.comboBoxMapType.TabIndex = 14;
            this.comboBoxMapType.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
            // 
            // button7
            // 
            this.button7.BackColor = System.Drawing.Color.DarkGray;
            this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button7.Location = new System.Drawing.Point(51, 579);
            this.button7.Name = "button7";
            this.button7.Size = new System.Drawing.Size(26, 23);
            this.button7.TabIndex = 13;
            this.button7.Text = "●";
            this.button7.UseVisualStyleBackColor = false;
            this.button7.Click += new System.EventHandler(this.button7_Click);
            // 
            // button6
            // 
            this.button6.BackColor = System.Drawing.Color.DarkGray;
            this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button6.Location = new System.Drawing.Point(44, 550);
            this.button6.Name = "button6";
            this.button6.Size = new System.Drawing.Size(42, 23);
            this.button6.TabIndex = 12;
            this.button6.Text = "↑";
            this.button6.UseVisualStyleBackColor = false;
            this.button6.Click += new System.EventHandler(this.button6_Click);
            // 
            // button5
            // 
            this.button5.BackColor = System.Drawing.Color.DarkGray;
            this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button5.Location = new System.Drawing.Point(44, 608);
            this.button5.Name = "button5";
            this.button5.Size = new System.Drawing.Size(42, 23);
            this.button5.TabIndex = 11;
            this.button5.Text = "↓";
            this.button5.UseVisualStyleBackColor = false;
            this.button5.Click += new System.EventHandler(this.button5_Click);
            // 
            // button4
            // 
            this.button4.BackColor = System.Drawing.Color.DarkGray;
            this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button4.Location = new System.Drawing.Point(4, 579);
            this.button4.Name = "button4";
            this.button4.Size = new System.Drawing.Size(42, 23);
            this.button4.TabIndex = 10;
            this.button4.Text = "←";
            this.button4.UseVisualStyleBackColor = false;
            this.button4.Click += new System.EventHandler(this.button4_Click);
            // 
            // button3
            // 
            this.button3.BackColor = System.Drawing.Color.DarkGray;
            this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button3.Location = new System.Drawing.Point(82, 579);
            this.button3.Name = "button3";
            this.button3.Size = new System.Drawing.Size(42, 23);
            this.button3.TabIndex = 9;
            this.button3.Text = "→";
            this.button3.UseVisualStyleBackColor = false;
            this.button3.Click += new System.EventHandler(this.button3_Click);
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.ForeColor = System.Drawing.Color.Silver;
            this.label12.Location = new System.Drawing.Point(50, 450);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(34, 13);
            this.label12.TabIndex = 8;
            this.label12.Text = "Zoom";
            // 
            // button2
            // 
            this.button2.BackColor = System.Drawing.Color.DarkGray;
            this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.button2.Location = new System.Drawing.Point(90, 450);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(42, 23);
            this.button2.TabIndex = 7;
            this.button2.Text = "+";
            this.button2.UseVisualStyleBackColor = false;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // button1
            // 
            this.button1.BackColor = System.Drawing.Color.DarkGray;
            this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.button1.Location = new System.Drawing.Point(6, 450);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(42, 23);
            this.button1.TabIndex = 6;
            this.button1.Text = "-";
            this.button1.UseVisualStyleBackColor = false;
            this.button1.Click += new System.EventHandler(this.button1_Click_2);
            // 
            // groupBox3
            // 
            this.groupBox3.BackColor = System.Drawing.Color.Black;
            this.groupBox3.Controls.Add(this.comboBoxLiveDisplayMode);
            this.groupBox3.Controls.Add(this.checkEnableDisplay);
            this.groupBox3.Controls.Add(this.groupBoxUpdateRate);
            this.groupBox3.Controls.Add(this.groupBoxSSRFilter);
            this.groupBox3.ForeColor = System.Drawing.Color.Silver;
            this.groupBox3.Location = new System.Drawing.Point(3, 0);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(130, 335);
            this.groupBox3.TabIndex = 5;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "Plot/Track Display";
            // 
            // comboBoxLiveDisplayMode
            // 
            this.comboBoxLiveDisplayMode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxLiveDisplayMode.FormattingEnabled = true;
            this.comboBoxLiveDisplayMode.Items.AddRange(new object[] {
            "Local",
            "Google Earth",
            "Local & Google  E"});
            this.comboBoxLiveDisplayMode.Location = new System.Drawing.Point(9, 40);
            this.comboBoxLiveDisplayMode.Name = "comboBoxLiveDisplayMode";
            this.comboBoxLiveDisplayMode.Size = new System.Drawing.Size(110, 21);
            this.comboBoxLiveDisplayMode.TabIndex = 5;
            this.comboBoxLiveDisplayMode.SelectedIndexChanged += new System.EventHandler(this.comboBoxLiveDisplayMode_SelectedIndexChanged);
            // 
            // checkEnableDisplay
            // 
            this.checkEnableDisplay.AutoSize = true;
            this.checkEnableDisplay.BackColor = System.Drawing.Color.Red;
            this.checkEnableDisplay.Location = new System.Drawing.Point(7, 19);
            this.checkEnableDisplay.Name = "checkEnableDisplay";
            this.checkEnableDisplay.Size = new System.Drawing.Size(67, 17);
            this.checkEnableDisplay.TabIndex = 2;
            this.checkEnableDisplay.Text = "Disabled";
            this.checkEnableDisplay.UseVisualStyleBackColor = false;
            this.checkEnableDisplay.CheckedChanged += new System.EventHandler(this.checkEnableDisplay_CheckedChanged);
            // 
            // groupBoxUpdateRate
            // 
            this.groupBoxUpdateRate.Controls.Add(this.checkBoxSyncToNM);
            this.groupBoxUpdateRate.Controls.Add(this.textBox1TrackCoast);
            this.groupBoxUpdateRate.Controls.Add(this.labelTrackCoast);
            this.groupBoxUpdateRate.Controls.Add(this.labelTrackCoastLabel);
            this.groupBoxUpdateRate.Controls.Add(this.labelDisplayUpdateRate);
            this.groupBoxUpdateRate.Controls.Add(this.textBoxUpdateRate);
            this.groupBoxUpdateRate.ForeColor = System.Drawing.Color.Silver;
            this.groupBoxUpdateRate.Location = new System.Drawing.Point(9, 201);
            this.groupBoxUpdateRate.Name = "groupBoxUpdateRate";
            this.groupBoxUpdateRate.Size = new System.Drawing.Size(110, 122);
            this.groupBoxUpdateRate.TabIndex = 3;
            this.groupBoxUpdateRate.TabStop = false;
            this.groupBoxUpdateRate.Text = "Display update";
            this.groupBoxUpdateRate.Enter += new System.EventHandler(this.groupBoxUpdateRate_Enter);
            // 
            // checkBoxSyncToNM
            // 
            this.checkBoxSyncToNM.AutoSize = true;
            this.checkBoxSyncToNM.BackColor = System.Drawing.Color.Transparent;
            this.checkBoxSyncToNM.Enabled = false;
            this.checkBoxSyncToNM.ForeColor = System.Drawing.SystemColors.ActiveBorder;
            this.checkBoxSyncToNM.Location = new System.Drawing.Point(8, 58);
            this.checkBoxSyncToNM.Name = "checkBoxSyncToNM";
            this.checkBoxSyncToNM.Size = new System.Drawing.Size(82, 17);
            this.checkBoxSyncToNM.TabIndex = 6;
            this.checkBoxSyncToNM.Text = "Sync to NM";
            this.checkBoxSyncToNM.UseVisualStyleBackColor = false;
            this.checkBoxSyncToNM.CheckedChanged += new System.EventHandler(this.checkBoxSyncToNM_CheckedChanged_1);
            // 
            // textBox1TrackCoast
            // 
            this.textBox1TrackCoast.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.textBox1TrackCoast.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.textBox1TrackCoast.Enabled = false;
            this.textBox1TrackCoast.Location = new System.Drawing.Point(6, 94);
            this.textBox1TrackCoast.Name = "textBox1TrackCoast";
            this.textBox1TrackCoast.Size = new System.Drawing.Size(97, 20);
            this.textBox1TrackCoast.TabIndex = 5;
            this.textBox1TrackCoast.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBox1TrackCoast_KeyPress);
            // 
            // labelTrackCoast
            // 
            this.labelTrackCoast.AutoSize = true;
            this.labelTrackCoast.Location = new System.Drawing.Point(72, 78);
            this.labelTrackCoast.Name = "labelTrackCoast";
            this.labelTrackCoast.Size = new System.Drawing.Size(13, 13);
            this.labelTrackCoast.TabIndex = 4;
            this.labelTrackCoast.Text = "0";
            // 
            // labelTrackCoastLabel
            // 
            this.labelTrackCoastLabel.AutoSize = true;
            this.labelTrackCoastLabel.Location = new System.Drawing.Point(4, 78);
            this.labelTrackCoastLabel.Name = "labelTrackCoastLabel";
            this.labelTrackCoastLabel.Size = new System.Drawing.Size(67, 13);
            this.labelTrackCoastLabel.TabIndex = 3;
            this.labelTrackCoastLabel.Text = "Track coast:";
            // 
            // labelDisplayUpdateRate
            // 
            this.labelDisplayUpdateRate.AutoSize = true;
            this.labelDisplayUpdateRate.Location = new System.Drawing.Point(3, 16);
            this.labelDisplayUpdateRate.Name = "labelDisplayUpdateRate";
            this.labelDisplayUpdateRate.Size = new System.Drawing.Size(66, 13);
            this.labelDisplayUpdateRate.TabIndex = 1;
            this.labelDisplayUpdateRate.Text = "Update rate:";
            // 
            // textBoxUpdateRate
            // 
            this.textBoxUpdateRate.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.textBoxUpdateRate.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.textBoxUpdateRate.Enabled = false;
            this.textBoxUpdateRate.Location = new System.Drawing.Point(6, 32);
            this.textBoxUpdateRate.Name = "textBoxUpdateRate";
            this.textBoxUpdateRate.Size = new System.Drawing.Size(97, 20);
            this.textBoxUpdateRate.TabIndex = 0;
            this.textBoxUpdateRate.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxUpdateRate_KeyPress);
            // 
            // groupBoxSSRFilter
            // 
            this.groupBoxSSRFilter.BackColor = System.Drawing.SystemColors.WindowText;
            this.groupBoxSSRFilter.Controls.Add(this.textBoxSSRCode);
            this.groupBoxSSRFilter.Controls.Add(this.label11);
            this.groupBoxSSRFilter.Controls.Add(this.label10);
            this.groupBoxSSRFilter.Controls.Add(this.comboBoxSSRFilterBox);
            this.groupBoxSSRFilter.Controls.Add(this.checkBoxFilterBySSR);
            this.groupBoxSSRFilter.ForeColor = System.Drawing.SystemColors.ActiveBorder;
            this.groupBoxSSRFilter.Location = new System.Drawing.Point(9, 67);
            this.groupBoxSSRFilter.Name = "groupBoxSSRFilter";
            this.groupBoxSSRFilter.Size = new System.Drawing.Size(110, 128);
            this.groupBoxSSRFilter.TabIndex = 4;
            this.groupBoxSSRFilter.TabStop = false;
            this.groupBoxSSRFilter.Text = "Filter by SSR code";
            // 
            // textBoxSSRCode
            // 
            this.textBoxSSRCode.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.textBoxSSRCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.textBoxSSRCode.Location = new System.Drawing.Point(7, 101);
            this.textBoxSSRCode.Name = "textBoxSSRCode";
            this.textBoxSSRCode.Size = new System.Drawing.Size(95, 20);
            this.textBoxSSRCode.TabIndex = 4;
            this.textBoxSSRCode.TextChanged += new System.EventHandler(this.textBoxSSRCode_TextChanged);
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Location = new System.Drawing.Point(4, 85);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(68, 13);
            this.label11.TabIndex = 3;
            this.label11.Text = "Enter a code";
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(2, 40);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(67, 13);
            this.label10.TabIndex = 2;
            this.label10.Text = "Pick a code ";
            // 
            // comboBoxSSRFilterBox
            // 
            this.comboBoxSSRFilterBox.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.comboBoxSSRFilterBox.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxSSRFilterBox.ForeColor = System.Drawing.SystemColors.Desktop;
            this.comboBoxSSRFilterBox.FormattingEnabled = true;
            this.comboBoxSSRFilterBox.Location = new System.Drawing.Point(5, 56);
            this.comboBoxSSRFilterBox.Name = "comboBoxSSRFilterBox";
            this.comboBoxSSRFilterBox.Size = new System.Drawing.Size(97, 21);
            this.comboBoxSSRFilterBox.TabIndex = 1;
            this.comboBoxSSRFilterBox.SelectedIndexChanged += new System.EventHandler(this.comboBoxSSRFilterBox_SelectedIndexChanged);
            this.comboBoxSSRFilterBox.MouseClick += new System.Windows.Forms.MouseEventHandler(this.comboBoxSSRFilterBox_MouseClick);
            // 
            // checkBoxFilterBySSR
            // 
            this.checkBoxFilterBySSR.AutoSize = true;
            this.checkBoxFilterBySSR.BackColor = System.Drawing.Color.Transparent;
            this.checkBoxFilterBySSR.Enabled = false;
            this.checkBoxFilterBySSR.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.checkBoxFilterBySSR.Location = new System.Drawing.Point(5, 19);
            this.checkBoxFilterBySSR.Name = "checkBoxFilterBySSR";
            this.checkBoxFilterBySSR.Size = new System.Drawing.Size(64, 17);
            this.checkBoxFilterBySSR.TabIndex = 0;
            this.checkBoxFilterBySSR.Text = "Disabled";
            this.checkBoxFilterBySSR.UseVisualStyleBackColor = false;
            this.checkBoxFilterBySSR.CheckedChanged += new System.EventHandler(this.checkBoxFilterBySSR_CheckedChanged);
            // 
            // tabPageAsterixMessages
            // 
            this.tabPageAsterixMessages.BackColor = System.Drawing.Color.Black;
            this.tabPageAsterixMessages.Controls.Add(this.checkBoxFillListBox);
            this.tabPageAsterixMessages.Controls.Add(this.listBoxManFrame);
            this.tabPageAsterixMessages.Controls.Add(this.label3);
            this.tabPageAsterixMessages.Controls.Add(this.label1);
            this.tabPageAsterixMessages.Controls.Add(this.label2);
            this.tabPageAsterixMessages.Controls.Add(this.label4);
            this.tabPageAsterixMessages.Controls.Add(this.label5);
            this.tabPageAsterixMessages.Controls.Add(this.label6);
            this.tabPageAsterixMessages.Location = new System.Drawing.Point(4, 22);
            this.tabPageAsterixMessages.Name = "tabPageAsterixMessages";
            this.tabPageAsterixMessages.Padding = new System.Windows.Forms.Padding(3);
            this.tabPageAsterixMessages.Size = new System.Drawing.Size(1168, 708);
            this.tabPageAsterixMessages.TabIndex = 0;
            this.tabPageAsterixMessages.Text = "Asterix Messages";
            // 
            // checkBoxFillListBox
            // 
            this.checkBoxFillListBox.AutoSize = true;
            this.checkBoxFillListBox.ForeColor = System.Drawing.Color.White;
            this.checkBoxFillListBox.Location = new System.Drawing.Point(1065, 2);
            this.checkBoxFillListBox.Name = "checkBoxFillListBox";
            this.checkBoxFillListBox.Size = new System.Drawing.Size(108, 17);
            this.checkBoxFillListBox.TabIndex = 16;
            this.checkBoxFillListBox.Text = "Populate List Box";
            this.checkBoxFillListBox.UseVisualStyleBackColor = true;
            this.checkBoxFillListBox.CheckedChanged += new System.EventHandler(this.checkBoxFillListBox_CheckedChanged);
            // 
            // listBoxManFrame
            // 
            this.listBoxManFrame.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
            this.listBoxManFrame.ForeColor = System.Drawing.Color.Black;
            this.listBoxManFrame.FormattingEnabled = true;
            this.listBoxManFrame.HorizontalScrollbar = true;
            this.listBoxManFrame.Location = new System.Drawing.Point(2, 19);
            this.listBoxManFrame.Name = "listBoxManFrame";
            this.listBoxManFrame.SelectionMode = System.Windows.Forms.SelectionMode.MultiSimple;
            this.listBoxManFrame.Size = new System.Drawing.Size(1170, 680);
            this.listBoxManFrame.TabIndex = 0;
            this.listBoxManFrame.SelectedIndexChanged += new System.EventHandler(this.listBox1_SelectedIndexChanged);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label3.ForeColor = System.Drawing.Color.White;
            this.label3.Location = new System.Drawing.Point(432, 3);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(50, 13);
            this.label3.TabIndex = 12;
            this.label3.Text = "SAC/SIC";
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.ForeColor = System.Drawing.Color.White;
            this.label1.Location = new System.Drawing.Point(14, 3);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(65, 13);
            this.label1.TabIndex = 10;
            this.label1.Text = "Time of Rcv";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label2.ForeColor = System.Drawing.Color.White;
            this.label2.Location = new System.Drawing.Point(391, 3);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(35, 13);
            this.label2.TabIndex = 11;
            this.label2.Text = "CAT#";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label4.ForeColor = System.Drawing.Color.White;
            this.label4.Location = new System.Drawing.Point(236, 3);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(86, 13);
            this.label4.TabIndex = 13;
            this.label4.Text = "Multicast:IP/Port";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label5.ForeColor = System.Drawing.Color.White;
            this.label5.Location = new System.Drawing.Point(113, 3);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(67, 13);
            this.label5.TabIndex = 14;
            this.label5.Text = "From:IP/Port";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label6.ForeColor = System.Drawing.Color.White;
            this.label6.Location = new System.Drawing.Point(345, 3);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(40, 13);
            this.label6.TabIndex = 15;
            this.label6.Text = "Bytes#";
            // 
            // tabMainTab
            // 
            this.tabMainTab.Controls.Add(this.tabPlotDisplay);
            this.tabMainTab.Controls.Add(this.tabPageSysStatus);
            this.tabMainTab.Controls.Add(this.tabPageAsterixMessages);
            this.tabMainTab.HotTrack = true;
            this.tabMainTab.Location = new System.Drawing.Point(6, 44);
            this.tabMainTab.Name = "tabMainTab";
            this.tabMainTab.SelectedIndex = 0;
            this.tabMainTab.Size = new System.Drawing.Size(1176, 734);
            this.tabMainTab.SizeMode = System.Windows.Forms.TabSizeMode.FillToRight;
            this.tabMainTab.TabIndex = 1;
            this.tabMainTab.SelectedIndexChanged += new System.EventHandler(this.tabMainTab_SelectedIndexChanged);
            this.tabMainTab.SizeChanged += new System.EventHandler(this.tabMainTab_SizeChanged);
            // 
            // tabPageSysStatus
            // 
            this.tabPageSysStatus.BackColor = System.Drawing.Color.Black;
            this.tabPageSysStatus.Controls.Add(this.checkBoxSystMonEnabled);
            this.tabPageSysStatus.Controls.Add(this.groupBoxSysStatCAT34);
            this.tabPageSysStatus.Location = new System.Drawing.Point(4, 22);
            this.tabPageSysStatus.Name = "tabPageSysStatus";
            this.tabPageSysStatus.Padding = new System.Windows.Forms.Padding(3);
            this.tabPageSysStatus.Size = new System.Drawing.Size(1168, 708);
            this.tabPageSysStatus.TabIndex = 2;
            this.tabPageSysStatus.Text = "System Status";
            this.tabPageSysStatus.Click += new System.EventHandler(this.tabPageSysStatus_Click);
            // 
            // checkBoxSystMonEnabled
            // 
            this.checkBoxSystMonEnabled.AutoSize = true;
            this.checkBoxSystMonEnabled.ForeColor = System.Drawing.Color.White;
            this.checkBoxSystMonEnabled.Location = new System.Drawing.Point(11, 7);
            this.checkBoxSystMonEnabled.Name = "checkBoxSystMonEnabled";
            this.checkBoxSystMonEnabled.Size = new System.Drawing.Size(152, 17);
            this.checkBoxSystMonEnabled.TabIndex = 1;
            this.checkBoxSystMonEnabled.Text = "SYS Monitoring ENABLED";
            this.checkBoxSystMonEnabled.UseVisualStyleBackColor = true;
            this.checkBoxSystMonEnabled.CheckedChanged += new System.EventHandler(this.checkBoxSystMonEnabled_CheckedChanged);
            // 
            // groupBoxSysStatCAT34
            // 
            this.groupBoxSysStatCAT34.Controls.Add(this.labelAntenaPeriod034);
            this.groupBoxSysStatCAT34.Controls.Add(this.label18);
            this.groupBoxSysStatCAT34.Controls.Add(this.btnAckowledgeRadar34);
            this.groupBoxSysStatCAT34.Controls.Add(this.groupBoxOnePSR);
            this.groupBoxSysStatCAT34.Controls.Add(this.groupBoxOneModeS);
            this.groupBoxSysStatCAT34.Controls.Add(this.groupBoxOneSSR);
            this.groupBoxSysStatCAT34.Controls.Add(this.groupBoxOneCOM);
            this.groupBoxSysStatCAT34.ForeColor = System.Drawing.Color.White;
            this.groupBoxSysStatCAT34.Location = new System.Drawing.Point(6, 30);
            this.groupBoxSysStatCAT34.Name = "groupBoxSysStatCAT34";
            this.groupBoxSysStatCAT34.Size = new System.Drawing.Size(276, 675);
            this.groupBoxSysStatCAT34.TabIndex = 0;
            this.groupBoxSysStatCAT34.TabStop = false;
            this.groupBoxSysStatCAT34.Text = "CAT034/I050";
            this.groupBoxSysStatCAT34.Enter += new System.EventHandler(this.groupBoxDisplayStatus_Enter);
            // 
            // labelAntenaPeriod034
            // 
            this.labelAntenaPeriod034.AutoSize = true;
            this.labelAntenaPeriod034.Location = new System.Drawing.Point(85, 19);
            this.labelAntenaPeriod034.Name = "labelAntenaPeriod034";
            this.labelAntenaPeriod034.Size = new System.Drawing.Size(27, 13);
            this.labelAntenaPeriod034.TabIndex = 7;
            this.labelAntenaPeriod034.Text = "N/A";
            // 
            // label18
            // 
            this.label18.AutoSize = true;
            this.label18.Location = new System.Drawing.Point(5, 18);
            this.label18.Name = "label18";
            this.label18.Size = new System.Drawing.Size(83, 13);
            this.label18.TabIndex = 6;
            this.label18.Text = "Antenna Period:";
            // 
            // btnAckowledgeRadar34
            // 
            this.btnAckowledgeRadar34.BackColor = System.Drawing.Color.Black;
            this.btnAckowledgeRadar34.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnAckowledgeRadar34.Location = new System.Drawing.Point(180, 14);
            this.btnAckowledgeRadar34.Name = "btnAckowledgeRadar34";
            this.btnAckowledgeRadar34.Size = new System.Drawing.Size(88, 23);
            this.btnAckowledgeRadar34.TabIndex = 5;
            this.btnAckowledgeRadar34.Text = "Acknowledge";
            this.btnAckowledgeRadar34.UseVisualStyleBackColor = false;
            this.btnAckowledgeRadar34.Click += new System.EventHandler(this.btnAckowledgeRadar1_Click);
            // 
            // groupBoxOnePSR
            // 
            this.groupBoxOnePSR.Controls.Add(this.comboBoxPSR_Mon_Sys_Disconect);
            this.groupBoxOnePSR.Controls.Add(this.comboBoxPSR_Overloaded);
            this.groupBoxOnePSR.Controls.Add(this.comboBoxPSR_Antenna_Selected);
            this.groupBoxOnePSR.Controls.Add(this.comboBoxPSR_Channel_Status);
            this.groupBoxOnePSR.ForeColor = System.Drawing.Color.White;
            this.groupBoxOnePSR.Location = new System.Drawing.Point(5, 555);
            this.groupBoxOnePSR.Name = "groupBoxOnePSR";
            this.groupBoxOnePSR.Size = new System.Drawing.Size(264, 114);
            this.groupBoxOnePSR.TabIndex = 4;
            this.groupBoxOnePSR.TabStop = false;
            this.groupBoxOnePSR.Text = "PSR";
            // 
            // comboBoxPSR_Mon_Sys_Disconect
            // 
            this.comboBoxPSR_Mon_Sys_Disconect.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxPSR_Mon_Sys_Disconect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxPSR_Mon_Sys_Disconect.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxPSR_Mon_Sys_Disconect.ItemHeight = 12;
            this.comboBoxPSR_Mon_Sys_Disconect.Location = new System.Drawing.Point(6, 88);
            this.comboBoxPSR_Mon_Sys_Disconect.Name = "comboBoxPSR_Mon_Sys_Disconect";
            this.comboBoxPSR_Mon_Sys_Disconect.Size = new System.Drawing.Size(250, 18);
            this.comboBoxPSR_Mon_Sys_Disconect.TabIndex = 16;
            this.comboBoxPSR_Mon_Sys_Disconect.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxPSR_Mon_Sys_Disconect_DrawItem);
            // 
            // comboBoxPSR_Overloaded
            // 
            this.comboBoxPSR_Overloaded.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxPSR_Overloaded.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxPSR_Overloaded.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxPSR_Overloaded.ItemHeight = 12;
            this.comboBoxPSR_Overloaded.Location = new System.Drawing.Point(6, 65);
            this.comboBoxPSR_Overloaded.Name = "comboBoxPSR_Overloaded";
            this.comboBoxPSR_Overloaded.Size = new System.Drawing.Size(250, 18);
            this.comboBoxPSR_Overloaded.TabIndex = 15;
            this.comboBoxPSR_Overloaded.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxPSR_Overloaded_DrawItem);
            // 
            // comboBoxPSR_Antenna_Selected
            // 
            this.comboBoxPSR_Antenna_Selected.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxPSR_Antenna_Selected.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxPSR_Antenna_Selected.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxPSR_Antenna_Selected.ItemHeight = 12;
            this.comboBoxPSR_Antenna_Selected.Location = new System.Drawing.Point(6, 42);
            this.comboBoxPSR_Antenna_Selected.Name = "comboBoxPSR_Antenna_Selected";
            this.comboBoxPSR_Antenna_Selected.Size = new System.Drawing.Size(250, 18);
            this.comboBoxPSR_Antenna_Selected.TabIndex = 13;
            this.comboBoxPSR_Antenna_Selected.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxPSR_Antenna_Selected_DrawItem);
            // 
            // comboBoxPSR_Channel_Status
            // 
            this.comboBoxPSR_Channel_Status.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxPSR_Channel_Status.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxPSR_Channel_Status.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxPSR_Channel_Status.ItemHeight = 12;
            this.comboBoxPSR_Channel_Status.Location = new System.Drawing.Point(6, 19);
            this.comboBoxPSR_Channel_Status.Name = "comboBoxPSR_Channel_Status";
            this.comboBoxPSR_Channel_Status.Size = new System.Drawing.Size(250, 18);
            this.comboBoxPSR_Channel_Status.TabIndex = 12;
            this.comboBoxPSR_Channel_Status.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxPSR_Channel_Status_DrawItem);
            // 
            // groupBoxOneModeS
            // 
            this.groupBoxOneModeS.Controls.Add(this.comboBoxMDS_Comm_Overload);
            this.groupBoxOneModeS.Controls.Add(this.comboBoxMDS_DataLink_Overload);
            this.groupBoxOneModeS.Controls.Add(this.comboBoxMDS_Ch_For_DataLink);
            this.groupBoxOneModeS.Controls.Add(this.comboBoxMDS_Ch_For_Cord);
            this.groupBoxOneModeS.Controls.Add(this.comboBoxMDS_Mon_Sys_Disconect);
            this.groupBoxOneModeS.Controls.Add(this.ccomboBoxMDS_Overoaded);
            this.groupBoxOneModeS.Controls.Add(this.comboBoxMDS_Antena_Selected);
            this.groupBoxOneModeS.Controls.Add(this.comboBoxMDS_Channel_Status);
            this.groupBoxOneModeS.ForeColor = System.Drawing.Color.White;
            this.groupBoxOneModeS.Location = new System.Drawing.Point(5, 345);
            this.groupBoxOneModeS.Name = "groupBoxOneModeS";
            this.groupBoxOneModeS.Size = new System.Drawing.Size(263, 204);
            this.groupBoxOneModeS.TabIndex = 3;
            this.groupBoxOneModeS.TabStop = false;
            this.groupBoxOneModeS.Text = "Mode - S";
            this.groupBoxOneModeS.Enter += new System.EventHandler(this.groupBoxOneModeS_Enter);
            // 
            // comboBoxMDS_Comm_Overload
            // 
            this.comboBoxMDS_Comm_Overload.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxMDS_Comm_Overload.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxMDS_Comm_Overload.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxMDS_Comm_Overload.ItemHeight = 12;
            this.comboBoxMDS_Comm_Overload.Location = new System.Drawing.Point(6, 180);
            this.comboBoxMDS_Comm_Overload.Name = "comboBoxMDS_Comm_Overload";
            this.comboBoxMDS_Comm_Overload.Size = new System.Drawing.Size(250, 18);
            this.comboBoxMDS_Comm_Overload.TabIndex = 20;
            this.comboBoxMDS_Comm_Overload.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxMDS_Comm_Overload_DrawItem);
            // 
            // comboBoxMDS_DataLink_Overload
            // 
            this.comboBoxMDS_DataLink_Overload.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxMDS_DataLink_Overload.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxMDS_DataLink_Overload.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxMDS_DataLink_Overload.ItemHeight = 12;
            this.comboBoxMDS_DataLink_Overload.Location = new System.Drawing.Point(7, 157);
            this.comboBoxMDS_DataLink_Overload.Name = "comboBoxMDS_DataLink_Overload";
            this.comboBoxMDS_DataLink_Overload.Size = new System.Drawing.Size(250, 18);
            this.comboBoxMDS_DataLink_Overload.TabIndex = 19;
            this.comboBoxMDS_DataLink_Overload.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxMDS_DataLink_Overload_DrawItem);
            // 
            // comboBoxMDS_Ch_For_DataLink
            // 
            this.comboBoxMDS_Ch_For_DataLink.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxMDS_Ch_For_DataLink.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxMDS_Ch_For_DataLink.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxMDS_Ch_For_DataLink.ItemHeight = 12;
            this.comboBoxMDS_Ch_For_DataLink.Location = new System.Drawing.Point(7, 134);
            this.comboBoxMDS_Ch_For_DataLink.Name = "comboBoxMDS_Ch_For_DataLink";
            this.comboBoxMDS_Ch_For_DataLink.Size = new System.Drawing.Size(250, 18);
            this.comboBoxMDS_Ch_For_DataLink.TabIndex = 17;
            this.comboBoxMDS_Ch_For_DataLink.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxMDS_Ch_For_DataLink_DrawItem);
            // 
            // comboBoxMDS_Ch_For_Cord
            // 
            this.comboBoxMDS_Ch_For_Cord.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxMDS_Ch_For_Cord.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxMDS_Ch_For_Cord.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxMDS_Ch_For_Cord.ItemHeight = 12;
            this.comboBoxMDS_Ch_For_Cord.Location = new System.Drawing.Point(7, 111);
            this.comboBoxMDS_Ch_For_Cord.Name = "comboBoxMDS_Ch_For_Cord";
            this.comboBoxMDS_Ch_For_Cord.Size = new System.Drawing.Size(250, 18);
            this.comboBoxMDS_Ch_For_Cord.TabIndex = 14;
            this.comboBoxMDS_Ch_For_Cord.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxMDS_Ch_For_Cord_DrawItem);
            // 
            // comboBoxMDS_Mon_Sys_Disconect
            // 
            this.comboBoxMDS_Mon_Sys_Disconect.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxMDS_Mon_Sys_Disconect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxMDS_Mon_Sys_Disconect.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxMDS_Mon_Sys_Disconect.ItemHeight = 12;
            this.comboBoxMDS_Mon_Sys_Disconect.Location = new System.Drawing.Point(7, 88);
            this.comboBoxMDS_Mon_Sys_Disconect.Name = "comboBoxMDS_Mon_Sys_Disconect";
            this.comboBoxMDS_Mon_Sys_Disconect.Size = new System.Drawing.Size(250, 18);
            this.comboBoxMDS_Mon_Sys_Disconect.TabIndex = 16;
            this.comboBoxMDS_Mon_Sys_Disconect.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxMDS_Mon_Sys_Disconect_DrawItem);
            // 
            // ccomboBoxMDS_Overoaded
            // 
            this.ccomboBoxMDS_Overoaded.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.ccomboBoxMDS_Overoaded.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.ccomboBoxMDS_Overoaded.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.ccomboBoxMDS_Overoaded.ItemHeight = 12;
            this.ccomboBoxMDS_Overoaded.Location = new System.Drawing.Point(7, 65);
            this.ccomboBoxMDS_Overoaded.Name = "ccomboBoxMDS_Overoaded";
            this.ccomboBoxMDS_Overoaded.Size = new System.Drawing.Size(250, 18);
            this.ccomboBoxMDS_Overoaded.TabIndex = 15;
            this.ccomboBoxMDS_Overoaded.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.ccomboBoxMDS_Overoaded_DrawItem);
            // 
            // comboBoxMDS_Antena_Selected
            // 
            this.comboBoxMDS_Antena_Selected.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxMDS_Antena_Selected.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxMDS_Antena_Selected.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxMDS_Antena_Selected.ItemHeight = 12;
            this.comboBoxMDS_Antena_Selected.Location = new System.Drawing.Point(7, 42);
            this.comboBoxMDS_Antena_Selected.Name = "comboBoxMDS_Antena_Selected";
            this.comboBoxMDS_Antena_Selected.Size = new System.Drawing.Size(250, 18);
            this.comboBoxMDS_Antena_Selected.TabIndex = 13;
            this.comboBoxMDS_Antena_Selected.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxMDS_Antena_Selected_DrawItem);
            // 
            // comboBoxMDS_Channel_Status
            // 
            this.comboBoxMDS_Channel_Status.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxMDS_Channel_Status.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxMDS_Channel_Status.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxMDS_Channel_Status.ItemHeight = 12;
            this.comboBoxMDS_Channel_Status.Location = new System.Drawing.Point(7, 19);
            this.comboBoxMDS_Channel_Status.Name = "comboBoxMDS_Channel_Status";
            this.comboBoxMDS_Channel_Status.Size = new System.Drawing.Size(250, 18);
            this.comboBoxMDS_Channel_Status.TabIndex = 12;
            this.comboBoxMDS_Channel_Status.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxMDS_Channel_Status_DrawItem);
            // 
            // groupBoxOneSSR
            // 
            this.groupBoxOneSSR.Controls.Add(this.comboBoxSSR_Mon_Sys_Disconect);
            this.groupBoxOneSSR.Controls.Add(this.comboBoxSSR_Overloaded);
            this.groupBoxOneSSR.Controls.Add(this.comboBoxSSR_Antenna_Selected);
            this.groupBoxOneSSR.Controls.Add(this.comboBoxSSR_Channel_Status);
            this.groupBoxOneSSR.ForeColor = System.Drawing.Color.White;
            this.groupBoxOneSSR.Location = new System.Drawing.Point(5, 223);
            this.groupBoxOneSSR.Name = "groupBoxOneSSR";
            this.groupBoxOneSSR.Size = new System.Drawing.Size(263, 116);
            this.groupBoxOneSSR.TabIndex = 2;
            this.groupBoxOneSSR.TabStop = false;
            this.groupBoxOneSSR.Text = "SSR";
            this.groupBoxOneSSR.Enter += new System.EventHandler(this.groupBoxDisplaySSR_Enter);
            // 
            // comboBoxSSR_Mon_Sys_Disconect
            // 
            this.comboBoxSSR_Mon_Sys_Disconect.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxSSR_Mon_Sys_Disconect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxSSR_Mon_Sys_Disconect.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxSSR_Mon_Sys_Disconect.ItemHeight = 12;
            this.comboBoxSSR_Mon_Sys_Disconect.Location = new System.Drawing.Point(6, 88);
            this.comboBoxSSR_Mon_Sys_Disconect.Name = "comboBoxSSR_Mon_Sys_Disconect";
            this.comboBoxSSR_Mon_Sys_Disconect.Size = new System.Drawing.Size(250, 18);
            this.comboBoxSSR_Mon_Sys_Disconect.TabIndex = 11;
            this.comboBoxSSR_Mon_Sys_Disconect.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxSSR_Mon_Sys_Disconect_DrawItem);
            // 
            // comboBoxSSR_Overloaded
            // 
            this.comboBoxSSR_Overloaded.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxSSR_Overloaded.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxSSR_Overloaded.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxSSR_Overloaded.ItemHeight = 12;
            this.comboBoxSSR_Overloaded.Location = new System.Drawing.Point(6, 65);
            this.comboBoxSSR_Overloaded.Name = "comboBoxSSR_Overloaded";
            this.comboBoxSSR_Overloaded.Size = new System.Drawing.Size(250, 18);
            this.comboBoxSSR_Overloaded.TabIndex = 10;
            this.comboBoxSSR_Overloaded.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxSSR_Overloaded_DrawItem);
            // 
            // comboBoxSSR_Antenna_Selected
            // 
            this.comboBoxSSR_Antenna_Selected.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxSSR_Antenna_Selected.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxSSR_Antenna_Selected.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxSSR_Antenna_Selected.ItemHeight = 12;
            this.comboBoxSSR_Antenna_Selected.Location = new System.Drawing.Point(6, 42);
            this.comboBoxSSR_Antenna_Selected.Name = "comboBoxSSR_Antenna_Selected";
            this.comboBoxSSR_Antenna_Selected.Size = new System.Drawing.Size(250, 18);
            this.comboBoxSSR_Antenna_Selected.TabIndex = 8;
            this.comboBoxSSR_Antenna_Selected.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxSSR_Antenna_Selected_DrawItem);
            // 
            // comboBoxSSR_Channel_Status
            // 
            this.comboBoxSSR_Channel_Status.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxSSR_Channel_Status.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxSSR_Channel_Status.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxSSR_Channel_Status.ItemHeight = 12;
            this.comboBoxSSR_Channel_Status.Location = new System.Drawing.Point(6, 19);
            this.comboBoxSSR_Channel_Status.Name = "comboBoxSSR_Channel_Status";
            this.comboBoxSSR_Channel_Status.Size = new System.Drawing.Size(250, 18);
            this.comboBoxSSR_Channel_Status.TabIndex = 7;
            this.comboBoxSSR_Channel_Status.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxSSR_Channel_Status_DrawItem);
            // 
            // groupBoxOneCOM
            // 
            this.groupBoxOneCOM.Controls.Add(this.comboBoxCOM_Time_Source_Status);
            this.groupBoxOneCOM.Controls.Add(this.comboBoxCOM_MON_Sys_Disconect);
            this.groupBoxOneCOM.Controls.Add(this.comboBoxCOM_RDPC_Selected);
            this.groupBoxOneCOM.Controls.Add(this.comboBoxCOM_Transmit_Overload);
            this.groupBoxOneCOM.Controls.Add(this.comboBoxCOM_RDP_Overload);
            this.groupBoxOneCOM.Controls.Add(this.comboBoxCOM_RDPC_Reset);
            this.groupBoxOneCOM.Controls.Add(this.comboBoxCOM_Top_Status);
            this.groupBoxOneCOM.ForeColor = System.Drawing.Color.White;
            this.groupBoxOneCOM.Location = new System.Drawing.Point(5, 37);
            this.groupBoxOneCOM.Name = "groupBoxOneCOM";
            this.groupBoxOneCOM.Size = new System.Drawing.Size(263, 180);
            this.groupBoxOneCOM.TabIndex = 1;
            this.groupBoxOneCOM.TabStop = false;
            this.groupBoxOneCOM.Text = "Common";
            this.groupBoxOneCOM.Enter += new System.EventHandler(this.groupBoxOneCOM_Enter);
            // 
            // comboBoxCOM_Time_Source_Status
            // 
            this.comboBoxCOM_Time_Source_Status.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxCOM_Time_Source_Status.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxCOM_Time_Source_Status.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxCOM_Time_Source_Status.ItemHeight = 12;
            this.comboBoxCOM_Time_Source_Status.Location = new System.Drawing.Point(8, 157);
            this.comboBoxCOM_Time_Source_Status.Name = "comboBoxCOM_Time_Source_Status";
            this.comboBoxCOM_Time_Source_Status.Size = new System.Drawing.Size(248, 18);
            this.comboBoxCOM_Time_Source_Status.TabIndex = 3;
            this.comboBoxCOM_Time_Source_Status.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxCOM_Time_Source_Status_DrawItem);
            // 
            // comboBoxCOM_MON_Sys_Disconect
            // 
            this.comboBoxCOM_MON_Sys_Disconect.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxCOM_MON_Sys_Disconect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxCOM_MON_Sys_Disconect.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxCOM_MON_Sys_Disconect.ItemHeight = 12;
            this.comboBoxCOM_MON_Sys_Disconect.Location = new System.Drawing.Point(8, 134);
            this.comboBoxCOM_MON_Sys_Disconect.Name = "comboBoxCOM_MON_Sys_Disconect";
            this.comboBoxCOM_MON_Sys_Disconect.Size = new System.Drawing.Size(248, 18);
            this.comboBoxCOM_MON_Sys_Disconect.TabIndex = 6;
            this.comboBoxCOM_MON_Sys_Disconect.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxCOM_MON_Sys_Disconect_DrawItem);
            // 
            // comboBoxCOM_RDPC_Selected
            // 
            this.comboBoxCOM_RDPC_Selected.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxCOM_RDPC_Selected.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxCOM_RDPC_Selected.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxCOM_RDPC_Selected.ItemHeight = 12;
            this.comboBoxCOM_RDPC_Selected.Location = new System.Drawing.Point(8, 42);
            this.comboBoxCOM_RDPC_Selected.Name = "comboBoxCOM_RDPC_Selected";
            this.comboBoxCOM_RDPC_Selected.Size = new System.Drawing.Size(248, 18);
            this.comboBoxCOM_RDPC_Selected.TabIndex = 5;
            this.comboBoxCOM_RDPC_Selected.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxCOM_RDPC_Selected_DrawItem);
            // 
            // comboBoxCOM_Transmit_Overload
            // 
            this.comboBoxCOM_Transmit_Overload.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxCOM_Transmit_Overload.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxCOM_Transmit_Overload.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxCOM_Transmit_Overload.ItemHeight = 12;
            this.comboBoxCOM_Transmit_Overload.Location = new System.Drawing.Point(8, 111);
            this.comboBoxCOM_Transmit_Overload.Name = "comboBoxCOM_Transmit_Overload";
            this.comboBoxCOM_Transmit_Overload.Size = new System.Drawing.Size(248, 18);
            this.comboBoxCOM_Transmit_Overload.TabIndex = 4;
            this.comboBoxCOM_Transmit_Overload.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxCOM_Transmit_Overload_DrawItem);
            // 
            // comboBoxCOM_RDP_Overload
            // 
            this.comboBoxCOM_RDP_Overload.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxCOM_RDP_Overload.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxCOM_RDP_Overload.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxCOM_RDP_Overload.ItemHeight = 12;
            this.comboBoxCOM_RDP_Overload.Location = new System.Drawing.Point(8, 88);
            this.comboBoxCOM_RDP_Overload.Name = "comboBoxCOM_RDP_Overload";
            this.comboBoxCOM_RDP_Overload.Size = new System.Drawing.Size(248, 18);
            this.comboBoxCOM_RDP_Overload.TabIndex = 2;
            this.comboBoxCOM_RDP_Overload.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxCOM_RDP_Overload_DrawItem);
            // 
            // comboBoxCOM_RDPC_Reset
            // 
            this.comboBoxCOM_RDPC_Reset.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxCOM_RDPC_Reset.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxCOM_RDPC_Reset.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxCOM_RDPC_Reset.ItemHeight = 12;
            this.comboBoxCOM_RDPC_Reset.Location = new System.Drawing.Point(8, 65);
            this.comboBoxCOM_RDPC_Reset.Name = "comboBoxCOM_RDPC_Reset";
            this.comboBoxCOM_RDPC_Reset.Size = new System.Drawing.Size(248, 18);
            this.comboBoxCOM_RDPC_Reset.TabIndex = 1;
            this.comboBoxCOM_RDPC_Reset.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxCOM_RDPC_Reset_DrawItem);
            // 
            // comboBoxCOM_Top_Status
            // 
            this.comboBoxCOM_Top_Status.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.comboBoxCOM_Top_Status.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxCOM_Top_Status.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.comboBoxCOM_Top_Status.ItemHeight = 12;
            this.comboBoxCOM_Top_Status.Location = new System.Drawing.Point(8, 19);
            this.comboBoxCOM_Top_Status.Name = "comboBoxCOM_Top_Status";
            this.comboBoxCOM_Top_Status.Size = new System.Drawing.Size(248, 18);
            this.comboBoxCOM_Top_Status.TabIndex = 0;
            this.comboBoxCOM_Top_Status.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.comboBoxCOM_Top_Status_DrawItem);
            // 
            // NorthMarkerTimer
            // 
            this.NorthMarkerTimer.Enabled = true;
            this.NorthMarkerTimer.Tick += new System.EventHandler(this.NorthMarkerTimer_Tick);
            // 
            // backgroundWorkerLoadData
            // 
            this.backgroundWorkerLoadData.DoWork += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorker1_DoWork);
            this.backgroundWorkerLoadData.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
            // 
            // groupBox4
            // 
            this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox4.Controls.Add(this.label17);
            this.groupBox4.Controls.Add(this.checkBoxRecordInRaw);
            this.groupBox4.Controls.Add(this.label9);
            this.groupBox4.Controls.Add(this.checkBoxRecording);
            this.groupBox4.ForeColor = System.Drawing.Color.White;
            this.groupBox4.Location = new System.Drawing.Point(697, 0);
            this.groupBox4.Name = "groupBox4";
            this.groupBox4.Size = new System.Drawing.Size(91, 60);
            this.groupBox4.TabIndex = 24;
            this.groupBox4.TabStop = false;
            this.groupBox4.Text = "Recording";
            // 
            // label17
            // 
            this.label17.AutoSize = true;
            this.label17.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.label17.Location = new System.Drawing.Point(22, 38);
            this.label17.Name = "label17";
            this.label17.Size = new System.Drawing.Size(61, 13);
            this.label17.TabIndex = 27;
            this.label17.Text = "Raw format";
            // 
            // checkBoxRecordInRaw
            // 
            this.checkBoxRecordInRaw.AutoSize = true;
            this.checkBoxRecordInRaw.Location = new System.Drawing.Point(6, 38);
            this.checkBoxRecordInRaw.Name = "checkBoxRecordInRaw";
            this.checkBoxRecordInRaw.Size = new System.Drawing.Size(15, 14);
            this.checkBoxRecordInRaw.TabIndex = 26;
            this.checkBoxRecordInRaw.UseVisualStyleBackColor = true;
            this.checkBoxRecordInRaw.CheckedChanged += new System.EventHandler(this.checkBoxRecordInRaw_CheckedChanged);
            // 
            // groupBox5
            // 
            this.groupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.groupBox5.Controls.Add(this.labelBytesReplayed);
            this.groupBox5.Controls.Add(this.progressBarReplayActive);
            this.groupBox5.Controls.Add(this.btnStartStopFileReplay);
            this.groupBox5.ForeColor = System.Drawing.Color.White;
            this.groupBox5.Location = new System.Drawing.Point(584, 0);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.Size = new System.Drawing.Size(109, 60);
            this.groupBox5.TabIndex = 25;
            this.groupBox5.TabStop = false;
            this.groupBox5.Text = "Replay";
            // 
            // labelBytesReplayed
            // 
            this.labelBytesReplayed.AutoSize = true;
            this.labelBytesReplayed.Location = new System.Drawing.Point(6, 43);
            this.labelBytesReplayed.Name = "labelBytesReplayed";
            this.labelBytesReplayed.Size = new System.Drawing.Size(27, 13);
            this.labelBytesReplayed.TabIndex = 2;
            this.labelBytesReplayed.Text = "N/A";
            // 
            // progressBarReplayActive
            // 
            this.progressBarReplayActive.Location = new System.Drawing.Point(40, 19);
            this.progressBarReplayActive.Name = "progressBarReplayActive";
            this.progressBarReplayActive.Size = new System.Drawing.Size(62, 18);
            this.progressBarReplayActive.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
            this.progressBarReplayActive.TabIndex = 1;
            // 
            // btnStartStopFileReplay
            // 
            this.btnStartStopFileReplay.BackColor = System.Drawing.Color.DarkGray;
            this.btnStartStopFileReplay.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            this.btnStartStopFileReplay.Location = new System.Drawing.Point(4, 15);
            this.btnStartStopFileReplay.Name = "btnStartStopFileReplay";
            this.btnStartStopFileReplay.Size = new System.Drawing.Size(102, 26);
            this.btnStartStopFileReplay.TabIndex = 0;
            this.btnStartStopFileReplay.Text = "Show";
            this.btnStartStopFileReplay.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.btnStartStopFileReplay.UseVisualStyleBackColor = false;
            this.btnStartStopFileReplay.Click += new System.EventHandler(this.btnStartStopFileReplay_Click);
            // 
            // labelClock
            // 
            this.labelClock.AutoSize = true;
            this.labelClock.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelClock.ForeColor = System.Drawing.Color.Lime;
            this.labelClock.Location = new System.Drawing.Point(49, 16);
            this.labelClock.Name = "labelClock";
            this.labelClock.Size = new System.Drawing.Size(83, 25);
            this.labelClock.TabIndex = 27;
            this.labelClock.Text = "CLOCK";
            // 
            // checkBoxIs_UTC
            // 
            this.checkBoxIs_UTC.AutoSize = true;
            this.checkBoxIs_UTC.BackColor = System.Drawing.Color.Transparent;
            this.checkBoxIs_UTC.ForeColor = System.Drawing.Color.Silver;
            this.checkBoxIs_UTC.Location = new System.Drawing.Point(6, 23);
            this.checkBoxIs_UTC.Name = "checkBoxIs_UTC";
            this.checkBoxIs_UTC.Size = new System.Drawing.Size(48, 17);
            this.checkBoxIs_UTC.TabIndex = 28;
            this.checkBoxIs_UTC.Text = "UTC";
            this.checkBoxIs_UTC.UseVisualStyleBackColor = false;
            // 
            // checkBoxFullscreen
            // 
            this.checkBoxFullscreen.AutoSize = true;
            this.checkBoxFullscreen.BackColor = System.Drawing.Color.Transparent;
            this.checkBoxFullscreen.ForeColor = System.Drawing.SystemColors.ActiveBorder;
            this.checkBoxFullscreen.Location = new System.Drawing.Point(205, 27);
            this.checkBoxFullscreen.Name = "checkBoxFullscreen";
            this.checkBoxFullscreen.Size = new System.Drawing.Size(77, 17);
            this.checkBoxFullscreen.TabIndex = 30;
            this.checkBoxFullscreen.Text = "Full screen";
            this.checkBoxFullscreen.UseVisualStyleBackColor = false;
            this.checkBoxFullscreen.CheckedChanged += new System.EventHandler(this.checkBoxFullscreen_CheckedChanged);
            // 
            // FormMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.Black;
            this.ClientSize = new System.Drawing.Size(1189, 741);
            this.Controls.Add(this.checkBoxFullscreen);
            this.Controls.Add(this.checkBoxIs_UTC);
            this.Controls.Add(this.labelClock);
            this.Controls.Add(this.groupBox5);
            this.Controls.Add(this.groupBox4);
            this.Controls.Add(this.groupBoxConnection);
            this.Controls.Add(this.tabMainTab);
            this.Controls.Add(this.menuStrip1);
            this.ForeColor = System.Drawing.SystemColors.WindowFrame;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.KeyPreview = true;
            this.MainMenuStrip = this.menuStrip1;
            this.Name = "FormMain";
            this.Text = "AMER KAPETANOVIC - ASTERIX DARR  2.0";
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FormMain_FormClosed);
            this.Load += new System.EventHandler(this.FormMain_Load);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.FormMain_KeyDown);
            this.Resize += new System.EventHandler(this.FormMain_Resize);
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.groupBoxConnection.ResumeLayout(false);
            this.groupBoxConnection.PerformLayout();
            this.tabPlotDisplay.ResumeLayout(false);
            this.tabPlotDisplay.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownUpper)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownLower)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.groupBoxUpdateRate.ResumeLayout(false);
            this.groupBoxUpdateRate.PerformLayout();
            this.groupBoxSSRFilter.ResumeLayout(false);
            this.groupBoxSSRFilter.PerformLayout();
            this.tabPageAsterixMessages.ResumeLayout(false);
            this.tabPageAsterixMessages.PerformLayout();
            this.tabMainTab.ResumeLayout(false);
            this.tabPageSysStatus.ResumeLayout(false);
            this.tabPageSysStatus.PerformLayout();
            this.groupBoxSysStatCAT34.ResumeLayout(false);
            this.groupBoxSysStatCAT34.PerformLayout();
            this.groupBoxOnePSR.ResumeLayout(false);
            this.groupBoxOneModeS.ResumeLayout(false);
            this.groupBoxOneSSR.ResumeLayout(false);
            this.groupBoxOneCOM.ResumeLayout(false);
            this.groupBox4.ResumeLayout(false);
            this.groupBox4.PerformLayout();
            this.groupBox5.ResumeLayout(false);
            this.groupBox5.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
示例#12
0
 private void RefreshShownMapsCacheSize()
 {
     try
     {
         decimal totalSize = 0M;
         using (GMap.NET.WindowsForms.GMapControl c = new GMap.NET.WindowsForms.GMapControl())
         {
             GMap.NET.CacheProviders.SQLitePureImageCache slCache = c.Manager.PrimaryCache as GMap.NET.CacheProviders.SQLitePureImageCache;
             if (slCache != null)
             {
                 DirectoryInfo di = new DirectoryInfo(slCache.GtileCache);
                 foreach (DirectoryInfo di2 in di.GetDirectories())
                 {
                     foreach (FileInfo fi in di2.GetFiles())
                     {
                         totalSize += Convert.ToDecimal(fi.Length);
                     }
                 }
             }
         }
         this.lblMapsCacheSize.Text = string.Format(i18n._cache_size_X_, Localizer.FormatSize(totalSize));
         this.lblMapsCacheSize.Visible = true;
     }
     catch
     {
         this.lblMapsCacheSize.Visible = false;
     }
 }
示例#13
0
 private void lnkMaps_ClearCache_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
 {
     try
     {
         using (GMap.NET.WindowsForms.GMapControl c = new GMap.NET.WindowsForms.GMapControl())
         {
             c.Manager.PrimaryCache.DeleteOlderThan(DateTime.Now, null);
             GMap.NET.CacheProviders.SQLitePureImageCache slCache = c.Manager.PrimaryCache as GMap.NET.CacheProviders.SQLitePureImageCache;
             if (slCache != null)
             {
                 DirectoryInfo di = new DirectoryInfo(slCache.GtileCache);
                 foreach (DirectoryInfo di2 in di.GetDirectories())
                 {
                     foreach (FileInfo fi in di2.GetFiles())
                     {
                         try
                         {
                             GMap.NET.CacheProviders.SQLitePureImageCache.VacuumDb(fi.FullName); ;
                         }
                         catch
                         { }
                     }
                 }
             }
         }
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message);
     }
     this.RefreshShownMapsCacheSize();
 }
示例#14
0
 /// <summary> 
 /// Erforderliche Methode für die Designerunterstützung. 
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.tableLayoutPanel13 = new System.Windows.Forms.TableLayoutPanel();
     this.radioButton1 = new System.Windows.Forms.RadioButton();
     this.radioButton2 = new System.Windows.Forms.RadioButton();
     this.tableLayoutPanel8 = new System.Windows.Forms.TableLayoutPanel();
     this.fldY = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.tableLayoutPanel7 = new System.Windows.Forms.TableLayoutPanel();
     this.fldX = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.tableLayoutPanel6 = new System.Windows.Forms.TableLayoutPanel();
     this.fldSizeY = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
     this.fldRotationX = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.fldRotationY = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.label1 = new System.Windows.Forms.Label();
     this.fldSizeX = new System.Windows.Forms.TextBox();
     this.tableLayoutPanel9 = new System.Windows.Forms.TableLayoutPanel();
     this.label7 = new System.Windows.Forms.Label();
     this.fldName = new System.Windows.Forms.TextBox();
     this.tableLayoutPanel11 = new System.Windows.Forms.TableLayoutPanel();
     this.label8 = new System.Windows.Forms.Label();
     this.textBoxZoomLevel = new System.Windows.Forms.TextBox();
     this.trackBarZoomlevel = new System.Windows.Forms.TrackBar();
     this.btnSave = new System.Windows.Forms.Button();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label9 = new System.Windows.Forms.Label();
     this.gMapControl1 = new GMap.NET.WindowsForms.GMapControl();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     this.tableLayoutPanel13.SuspendLayout();
     this.tableLayoutPanel8.SuspendLayout();
     this.tableLayoutPanel7.SuspendLayout();
     this.tableLayoutPanel6.SuspendLayout();
     this.tableLayoutPanel5.SuspendLayout();
     this.tableLayoutPanel4.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.tableLayoutPanel9.SuspendLayout();
     this.tableLayoutPanel11.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarZoomlevel)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.AutoScroll = true;
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 24.34326F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 75.65675F));
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.panel1, 1, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 1;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(3200, 1459);
     this.tableLayoutPanel1.TabIndex = 1;
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 1;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel13, 0, 9);
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel8, 0, 7);
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel7, 0, 6);
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel6, 0, 5);
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel5, 0, 4);
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel4, 0, 3);
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel3, 0, 2);
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel9, 0, 8);
     this.tableLayoutPanel2.Controls.Add(this.tableLayoutPanel11, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.trackBarZoomlevel, 0, 1);
     this.tableLayoutPanel2.Controls.Add(this.btnSave, 0, 10);
     this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Top;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(8, 7);
     this.tableLayoutPanel2.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.tableLayoutPanel2.MinimumSize = new System.Drawing.Size(728, 866);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 11;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 72F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 72F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 72F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 72F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 72F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 72F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 72F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 72F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 72F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 72F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 48F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 48F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(762, 866);
     this.tableLayoutPanel2.TabIndex = 2;
     //
     // tableLayoutPanel13
     //
     this.tableLayoutPanel13.ColumnCount = 2;
     this.tableLayoutPanel13.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel13.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel13.Controls.Add(this.radioButton1, 0, 0);
     this.tableLayoutPanel13.Controls.Add(this.radioButton2, 1, 0);
     this.tableLayoutPanel13.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel13.Location = new System.Drawing.Point(8, 655);
     this.tableLayoutPanel13.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.tableLayoutPanel13.Name = "tableLayoutPanel13";
     this.tableLayoutPanel13.RowCount = 1;
     this.tableLayoutPanel13.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel13.Size = new System.Drawing.Size(746, 58);
     this.tableLayoutPanel13.TabIndex = 17;
     //
     // radioButton1
     //
     this.radioButton1.AutoSize = true;
     this.radioButton1.Location = new System.Drawing.Point(8, 7);
     this.radioButton1.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.radioButton1.Name = "radioButton1";
     this.radioButton1.Size = new System.Drawing.Size(221, 36);
     this.radioButton1.TabIndex = 0;
     this.radioButton1.Text = "Google Maps";
     this.radioButton1.UseVisualStyleBackColor = true;
     this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
     //
     // radioButton2
     //
     this.radioButton2.AutoSize = true;
     this.radioButton2.Checked = true;
     this.radioButton2.Location = new System.Drawing.Point(381, 7);
     this.radioButton2.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.radioButton2.Name = "radioButton2";
     this.radioButton2.Size = new System.Drawing.Size(274, 36);
     this.radioButton2.TabIndex = 1;
     this.radioButton2.TabStop = true;
     this.radioButton2.Text = "Open Street View";
     this.radioButton2.UseVisualStyleBackColor = true;
     this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
     //
     // tableLayoutPanel8
     //
     this.tableLayoutPanel8.ColumnCount = 2;
     this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel8.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel8.Controls.Add(this.fldY, 1, 0);
     this.tableLayoutPanel8.Controls.Add(this.label6, 0, 0);
     this.tableLayoutPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel8.Location = new System.Drawing.Point(8, 511);
     this.tableLayoutPanel8.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.tableLayoutPanel8.Name = "tableLayoutPanel8";
     this.tableLayoutPanel8.RowCount = 1;
     this.tableLayoutPanel8.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel8.Size = new System.Drawing.Size(746, 58);
     this.tableLayoutPanel8.TabIndex = 10;
     //
     // fldY
     //
     this.fldY.Dock = System.Windows.Forms.DockStyle.Fill;
     this.fldY.Enabled = false;
     this.fldY.Location = new System.Drawing.Point(381, 7);
     this.fldY.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.fldY.Name = "fldY";
     this.fldY.Size = new System.Drawing.Size(357, 38);
     this.fldY.TabIndex = 3;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label6.Location = new System.Drawing.Point(8, 0);
     this.label6.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(357, 58);
     this.label6.TabIndex = 1;
     this.label6.Text = "y-coordinate topleft:";
     //
     // tableLayoutPanel7
     //
     this.tableLayoutPanel7.ColumnCount = 2;
     this.tableLayoutPanel7.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel7.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel7.Controls.Add(this.fldX, 0, 0);
     this.tableLayoutPanel7.Controls.Add(this.label5, 0, 0);
     this.tableLayoutPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel7.Location = new System.Drawing.Point(8, 439);
     this.tableLayoutPanel7.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.tableLayoutPanel7.Name = "tableLayoutPanel7";
     this.tableLayoutPanel7.RowCount = 1;
     this.tableLayoutPanel7.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel7.Size = new System.Drawing.Size(746, 58);
     this.tableLayoutPanel7.TabIndex = 9;
     //
     // fldX
     //
     this.fldX.Dock = System.Windows.Forms.DockStyle.Fill;
     this.fldX.Enabled = false;
     this.fldX.Location = new System.Drawing.Point(381, 7);
     this.fldX.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.fldX.Name = "fldX";
     this.fldX.Size = new System.Drawing.Size(357, 38);
     this.fldX.TabIndex = 3;
     this.fldX.TextChanged += new System.EventHandler(this.fldX_TextChanged);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label5.Location = new System.Drawing.Point(8, 0);
     this.label5.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(357, 58);
     this.label5.TabIndex = 1;
     this.label5.Text = "x-coordinate topleft:";
     //
     // tableLayoutPanel6
     //
     this.tableLayoutPanel6.ColumnCount = 2;
     this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.37037F));
     this.tableLayoutPanel6.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.62963F));
     this.tableLayoutPanel6.Controls.Add(this.fldSizeY, 0, 0);
     this.tableLayoutPanel6.Controls.Add(this.label4, 0, 0);
     this.tableLayoutPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel6.Location = new System.Drawing.Point(8, 367);
     this.tableLayoutPanel6.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.tableLayoutPanel6.Name = "tableLayoutPanel6";
     this.tableLayoutPanel6.RowCount = 1;
     this.tableLayoutPanel6.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel6.Size = new System.Drawing.Size(746, 58);
     this.tableLayoutPanel6.TabIndex = 8;
     //
     // fldSizeY
     //
     this.fldSizeY.Dock = System.Windows.Forms.DockStyle.Fill;
     this.fldSizeY.Enabled = false;
     this.fldSizeY.Location = new System.Drawing.Point(383, 7);
     this.fldSizeY.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.fldSizeY.Name = "fldSizeY";
     this.fldSizeY.Size = new System.Drawing.Size(355, 38);
     this.fldSizeY.TabIndex = 3;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label4.Location = new System.Drawing.Point(8, 0);
     this.label4.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(359, 58);
     this.label4.TabIndex = 1;
     this.label4.Text = "pixel size y-direction:";
     //
     // tableLayoutPanel5
     //
     this.tableLayoutPanel5.ColumnCount = 2;
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.Controls.Add(this.fldRotationX, 0, 0);
     this.tableLayoutPanel5.Controls.Add(this.label3, 0, 0);
     this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel5.Location = new System.Drawing.Point(8, 295);
     this.tableLayoutPanel5.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.tableLayoutPanel5.Name = "tableLayoutPanel5";
     this.tableLayoutPanel5.RowCount = 1;
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel5.Size = new System.Drawing.Size(746, 58);
     this.tableLayoutPanel5.TabIndex = 7;
     //
     // fldRotationX
     //
     this.fldRotationX.Dock = System.Windows.Forms.DockStyle.Fill;
     this.fldRotationX.Enabled = false;
     this.fldRotationX.Location = new System.Drawing.Point(381, 7);
     this.fldRotationX.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.fldRotationX.Name = "fldRotationX";
     this.fldRotationX.Size = new System.Drawing.Size(357, 38);
     this.fldRotationX.TabIndex = 3;
     this.fldRotationX.Text = "0";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label3.Location = new System.Drawing.Point(8, 0);
     this.label3.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(357, 58);
     this.label3.TabIndex = 1;
     this.label3.Text = "rotation about x-axis";
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 2;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.Controls.Add(this.fldRotationY, 1, 0);
     this.tableLayoutPanel4.Controls.Add(this.label2, 0, 0);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(8, 223);
     this.tableLayoutPanel4.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 1;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel4.Size = new System.Drawing.Size(746, 58);
     this.tableLayoutPanel4.TabIndex = 6;
     //
     // fldRotationY
     //
     this.fldRotationY.Dock = System.Windows.Forms.DockStyle.Fill;
     this.fldRotationY.Enabled = false;
     this.fldRotationY.Location = new System.Drawing.Point(381, 7);
     this.fldRotationY.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.fldRotationY.Name = "fldRotationY";
     this.fldRotationY.Size = new System.Drawing.Size(357, 38);
     this.fldRotationY.TabIndex = 2;
     this.fldRotationY.Text = "0";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label2.Location = new System.Drawing.Point(8, 0);
     this.label2.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(357, 58);
     this.label2.TabIndex = 0;
     this.label2.Text = "rotation about y-axis:";
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 2;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel3.Controls.Add(this.label1, 0, 0);
     this.tableLayoutPanel3.Controls.Add(this.fldSizeX, 1, 0);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(8, 151);
     this.tableLayoutPanel3.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 1;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 58F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(746, 58);
     this.tableLayoutPanel3.TabIndex = 5;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label1.Location = new System.Drawing.Point(8, 0);
     this.label1.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(357, 58);
     this.label1.TabIndex = 0;
     this.label1.Text = "pixel size x-direction:";
     //
     // fldSizeX
     //
     this.fldSizeX.Dock = System.Windows.Forms.DockStyle.Fill;
     this.fldSizeX.Enabled = false;
     this.fldSizeX.Location = new System.Drawing.Point(381, 7);
     this.fldSizeX.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.fldSizeX.Name = "fldSizeX";
     this.fldSizeX.Size = new System.Drawing.Size(357, 38);
     this.fldSizeX.TabIndex = 1;
     //
     // tableLayoutPanel9
     //
     this.tableLayoutPanel9.ColumnCount = 2;
     this.tableLayoutPanel9.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel9.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel9.Controls.Add(this.label7, 0, 0);
     this.tableLayoutPanel9.Controls.Add(this.fldName, 1, 0);
     this.tableLayoutPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel9.Location = new System.Drawing.Point(8, 583);
     this.tableLayoutPanel9.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.tableLayoutPanel9.Name = "tableLayoutPanel9";
     this.tableLayoutPanel9.RowCount = 1;
     this.tableLayoutPanel9.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel9.Size = new System.Drawing.Size(746, 58);
     this.tableLayoutPanel9.TabIndex = 12;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label7.Location = new System.Drawing.Point(8, 0);
     this.label7.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(357, 58);
     this.label7.TabIndex = 0;
     this.label7.Text = "name:";
     //
     // fldName
     //
     this.fldName.Dock = System.Windows.Forms.DockStyle.Fill;
     this.fldName.Location = new System.Drawing.Point(381, 7);
     this.fldName.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.fldName.Name = "fldName";
     this.fldName.Size = new System.Drawing.Size(357, 38);
     this.fldName.TabIndex = 1;
     this.fldName.TextChanged += new System.EventHandler(this.trackBarZoomlevel_ValueChanged);
     //
     // tableLayoutPanel11
     //
     this.tableLayoutPanel11.ColumnCount = 2;
     this.tableLayoutPanel11.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.54955F));
     this.tableLayoutPanel11.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.45045F));
     this.tableLayoutPanel11.Controls.Add(this.label8, 0, 0);
     this.tableLayoutPanel11.Controls.Add(this.textBoxZoomLevel, 1, 0);
     this.tableLayoutPanel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel11.Location = new System.Drawing.Point(8, 7);
     this.tableLayoutPanel11.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.tableLayoutPanel11.Name = "tableLayoutPanel11";
     this.tableLayoutPanel11.RowCount = 1;
     this.tableLayoutPanel11.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.tableLayoutPanel11.Size = new System.Drawing.Size(746, 58);
     this.tableLayoutPanel11.TabIndex = 15;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.label8.Location = new System.Drawing.Point(8, 0);
     this.label8.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(353, 58);
     this.label8.TabIndex = 0;
     this.label8.Text = "zoomlevel";
     //
     // textBoxZoomLevel
     //
     this.textBoxZoomLevel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxZoomLevel.Enabled = false;
     this.textBoxZoomLevel.Location = new System.Drawing.Point(377, 7);
     this.textBoxZoomLevel.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.textBoxZoomLevel.Name = "textBoxZoomLevel";
     this.textBoxZoomLevel.Size = new System.Drawing.Size(361, 38);
     this.textBoxZoomLevel.TabIndex = 1;
     //
     // trackBarZoomlevel
     //
     this.trackBarZoomlevel.Location = new System.Drawing.Point(8, 79);
     this.trackBarZoomlevel.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.trackBarZoomlevel.Name = "trackBarZoomlevel";
     this.trackBarZoomlevel.Size = new System.Drawing.Size(746, 58);
     this.trackBarZoomlevel.TabIndex = 14;
     this.trackBarZoomlevel.Scroll += new System.EventHandler(this.trackBarZoomlevel_Scroll);
     this.trackBarZoomlevel.ValueChanged += new System.EventHandler(this.trackBarZoomlevel_Scroll);
     //
     // btnSave
     //
     this.btnSave.Dock = System.Windows.Forms.DockStyle.Fill;
     this.btnSave.Location = new System.Drawing.Point(8, 727);
     this.btnSave.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(746, 132);
     this.btnSave.TabIndex = 16;
     this.btnSave.Text = "Save";
     this.btnSave.UseVisualStyleBackColor = true;
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // panel1
     //
     this.panel1.AutoScroll = true;
     this.panel1.Controls.Add(this.label9);
     this.panel1.Controls.Add(this.gMapControl1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(786, 7);
     this.panel1.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(2406, 1445);
     this.panel1.TabIndex = 3;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(8, 1378);
     this.label9.Margin = new System.Windows.Forms.Padding(8, 0, 8, 0);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(1387, 64);
     this.label9.TabIndex = 4;
     this.label9.Text = "The width of the map is exactly 25 nm on zoomlevel 11. Zoomlevel 11 is the only z" +
     "oomlevel accepted to save.\r\nDo first expand the size of the window and then sele" +
     "ct your part!";
     //
     // gMapControl1
     //
     this.gMapControl1.Bearing = 0F;
     this.gMapControl1.CanDragMap = true;
     this.gMapControl1.GrayScaleMode = false;
     this.gMapControl1.LevelsKeepInMemmory = 5;
     this.gMapControl1.Location = new System.Drawing.Point(8, 7);
     this.gMapControl1.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.gMapControl1.MarkersEnabled = true;
     this.gMapControl1.MaximumSize = new System.Drawing.Size(2368, 1364);
     this.gMapControl1.MaxZoom = 2;
     this.gMapControl1.MinimumSize = new System.Drawing.Size(2368, 1364);
     this.gMapControl1.MinZoom = 2;
     this.gMapControl1.MouseWheelZoomType = GMap.NET.MouseWheelZoomType.MousePositionAndCenter;
     this.gMapControl1.Name = "gMapControl1";
     this.gMapControl1.NegativeMode = false;
     this.gMapControl1.PolygonsEnabled = true;
     this.gMapControl1.RetryLoadTile = 0;
     this.gMapControl1.RoutesEnabled = true;
     this.gMapControl1.ShowTileGridLines = false;
     this.gMapControl1.Size = new System.Drawing.Size(2368, 1364);
     this.gMapControl1.TabIndex = 3;
     this.gMapControl1.Zoom = 0D;
     this.gMapControl1.Load += new System.EventHandler(this.gMapControl1_Load);
     this.gMapControl1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gMapControl1_MouseMove);
     this.gMapControl1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.gMapControl1_MouseUp);
     //
     // MapImportFromMaps
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(16F, 31F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.tableLayoutPanel1);
     this.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
     this.Name = "MapImportFromMaps";
     this.Size = new System.Drawing.Size(3200, 1459);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel2.PerformLayout();
     this.tableLayoutPanel13.ResumeLayout(false);
     this.tableLayoutPanel13.PerformLayout();
     this.tableLayoutPanel8.ResumeLayout(false);
     this.tableLayoutPanel8.PerformLayout();
     this.tableLayoutPanel7.ResumeLayout(false);
     this.tableLayoutPanel7.PerformLayout();
     this.tableLayoutPanel6.ResumeLayout(false);
     this.tableLayoutPanel6.PerformLayout();
     this.tableLayoutPanel5.ResumeLayout(false);
     this.tableLayoutPanel5.PerformLayout();
     this.tableLayoutPanel4.ResumeLayout(false);
     this.tableLayoutPanel4.PerformLayout();
     this.tableLayoutPanel3.ResumeLayout(false);
     this.tableLayoutPanel3.PerformLayout();
     this.tableLayoutPanel9.ResumeLayout(false);
     this.tableLayoutPanel9.PerformLayout();
     this.tableLayoutPanel11.ResumeLayout(false);
     this.tableLayoutPanel11.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBarZoomlevel)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
示例#15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LocationSelect));
     this.map = new GMap.NET.WindowsForms.GMapControl();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // map
     //
     this.map.Bearing = 0F;
     this.map.CanDragMap = true;
     this.map.EmptyTileColor = System.Drawing.Color.Navy;
     this.map.GrayScaleMode = false;
     this.map.HelperLineOption = GMap.NET.WindowsForms.HelperLineOptions.DontShow;
     this.map.LevelsKeepInMemmory = 5;
     this.map.Location = new System.Drawing.Point(12, 12);
     this.map.MarkersEnabled = true;
     this.map.MaxZoom = 2;
     this.map.MinZoom = 2;
     this.map.MouseWheelZoomType = GMap.NET.MouseWheelZoomType.MousePositionAndCenter;
     this.map.Name = "map";
     this.map.NegativeMode = false;
     this.map.PolygonsEnabled = true;
     this.map.RetryLoadTile = 0;
     this.map.RoutesEnabled = true;
     this.map.ScaleMode = GMap.NET.WindowsForms.ScaleModes.Integer;
     this.map.SelectedAreaFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(65)))), ((int)(((byte)(105)))), ((int)(((byte)(225)))));
     this.map.ShowTileGridLines = false;
     this.map.Size = new System.Drawing.Size(710, 465);
     this.map.TabIndex = 0;
     this.map.Zoom = 0D;
     this.map.OnMapDrag += new GMap.NET.MapDrag(this.map_OnMapDrag);
     this.map.Load += new System.EventHandler(this.map_Load);
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(66, 486);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(125, 20);
     this.textBox1.TabIndex = 1;
     this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(260, 486);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(125, 20);
     this.textBox2.TabIndex = 2;
     this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(442, 486);
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new System.Drawing.Size(125, 20);
     this.textBox3.TabIndex = 3;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 489);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 13);
     this.label1.TabIndex = 4;
     this.label1.Text = "Latitude:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(197, 489);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(57, 13);
     this.label2.TabIndex = 5;
     this.label2.Text = "Longitude:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(391, 489);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(45, 13);
     this.label3.TabIndex = 6;
     this.label3.Text = "Altitude:";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(589, 483);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(133, 23);
     this.button1.TabIndex = 7;
     this.button1.Text = "Set Location";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // LocationSelect
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(734, 511);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.textBox3);
     this.Controls.Add(this.textBox2);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.map);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name = "LocationSelect";
     this.Text = "Location";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.LocationSelect_FormClosing);
     this.Load += new System.EventHandler(this.LocationSelect_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.gMapControl = new GMap.NET.WindowsForms.GMapControl();
     this.addOnlyContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.addBankBranchBtn = new System.Windows.Forms.ToolStripMenuItem();
     this.removeAddContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.addBankBranchBtn2 = new System.Windows.Forms.ToolStripMenuItem();
     this.removeBankBranchBtn = new System.Windows.Forms.ToolStripMenuItem();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.файлToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.addServiceName = new System.Windows.Forms.ToolStripMenuItem();
     this.addNewBankBtn = new System.Windows.Forms.ToolStripMenuItem();
     this.label1 = new System.Windows.Forms.Label();
     this.comboBoxCur = new System.Windows.Forms.ComboBox();
     this.bestSellBtn = new System.Windows.Forms.Button();
     this.showAllBtn = new System.Windows.Forms.Button();
     this.bestBuyBtn = new System.Windows.Forms.Button();
     this.nearestBranchBtn = new System.Windows.Forms.Button();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripAddBank = new System.Windows.Forms.ToolStripButton();
     this.toolStripAddService = new System.Windows.Forms.ToolStripButton();
     this.toolStripRefreshMap = new System.Windows.Forms.ToolStripButton();
     this.toolStripRefreshRates = new System.Windows.Forms.ToolStripButton();
     this.toolStripZoomIn = new System.Windows.Forms.ToolStripButton();
     this.toolStripZoomOut = new System.Windows.Forms.ToolStripButton();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.filterMenu = new System.Windows.Forms.ToolStripMenuItem();
     this.bankFilterMenu = new System.Windows.Forms.ToolStripMenuItem();
     this.serviceFilterMenu = new System.Windows.Forms.ToolStripMenuItem();
     this.addOnlyContextMenu.SuspendLayout();
     this.removeAddContextMenu.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // gMapControl
     //
     this.gMapControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.gMapControl.Bearing = 0F;
     this.gMapControl.CanDragMap = true;
     this.gMapControl.EmptyTileColor = System.Drawing.Color.Navy;
     this.gMapControl.GrayScaleMode = false;
     this.gMapControl.HelperLineOption = GMap.NET.WindowsForms.HelperLineOptions.DontShow;
     this.gMapControl.LevelsKeepInMemmory = 5;
     this.gMapControl.Location = new System.Drawing.Point(303, 61);
     this.gMapControl.MarkersEnabled = true;
     this.gMapControl.MaxZoom = 2;
     this.gMapControl.MinZoom = 2;
     this.gMapControl.MouseWheelZoomType = GMap.NET.MouseWheelZoomType.MousePositionAndCenter;
     this.gMapControl.Name = "gMapControl";
     this.gMapControl.NegativeMode = false;
     this.gMapControl.PolygonsEnabled = true;
     this.gMapControl.RetryLoadTile = 0;
     this.gMapControl.RoutesEnabled = true;
     this.gMapControl.ScaleMode = GMap.NET.WindowsForms.ScaleModes.Integer;
     this.gMapControl.SelectedAreaFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(65)))), ((int)(((byte)(105)))), ((int)(((byte)(225)))));
     this.gMapControl.ShowTileGridLines = false;
     this.gMapControl.Size = new System.Drawing.Size(772, 542);
     this.gMapControl.TabIndex = 0;
     this.gMapControl.Zoom = 0D;
     this.gMapControl.OnMarkerClick += new GMap.NET.WindowsForms.MarkerClick(this.gMapControl_OnMarkerClick);
     this.gMapControl.MouseClick += new System.Windows.Forms.MouseEventHandler(this.gMapControl_MouseClick);
     //
     // addOnlyContextMenu
     //
     this.addOnlyContextMenu.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.addOnlyContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.addBankBranchBtn});
     this.addOnlyContextMenu.Name = "addOnlyContextMenu";
     this.addOnlyContextMenu.Size = new System.Drawing.Size(265, 34);
     //
     // addBankBranchBtn
     //
     this.addBankBranchBtn.Name = "addBankBranchBtn";
     this.addBankBranchBtn.Size = new System.Drawing.Size(264, 30);
     this.addBankBranchBtn.Text = "Добавить отделение";
     //
     // removeAddContextMenu
     //
     this.removeAddContextMenu.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.removeAddContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.addBankBranchBtn2,
     this.removeBankBranchBtn});
     this.removeAddContextMenu.Name = "addOnlyContextMenu";
     this.removeAddContextMenu.Size = new System.Drawing.Size(265, 64);
     //
     // addBankBranchBtn2
     //
     this.addBankBranchBtn2.Name = "addBankBranchBtn2";
     this.addBankBranchBtn2.Size = new System.Drawing.Size(264, 30);
     this.addBankBranchBtn2.Text = "Добавить отделение";
     //
     // removeBankBranchBtn
     //
     this.removeBankBranchBtn.Name = "removeBankBranchBtn";
     this.removeBankBranchBtn.Size = new System.Drawing.Size(264, 30);
     this.removeBankBranchBtn.Text = "Удалить отделение";
     //
     // menuStrip1
     //
     this.menuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.файлToolStripMenuItem,
     this.filterMenu});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(1087, 33);
     this.menuStrip1.TabIndex = 2;
     this.menuStrip1.Text = "menuStrip1";
     //
     // файлToolStripMenuItem
     //
     this.файлToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.addServiceName,
     this.addNewBankBtn});
     this.файлToolStripMenuItem.Name = "файлToolStripMenuItem";
     this.файлToolStripMenuItem.Size = new System.Drawing.Size(102, 29);
     this.файлToolStripMenuItem.Text = "Добавить";
     //
     // addServiceName
     //
     this.addServiceName.Name = "addServiceName";
     this.addServiceName.Size = new System.Drawing.Size(346, 30);
     this.addServiceName.Text = "Добавить название вида услуг";
     this.addServiceName.Click += new System.EventHandler(this.addServiceName_Click);
     //
     // addNewBankBtn
     //
     this.addNewBankBtn.Name = "addNewBankBtn";
     this.addNewBankBtn.Size = new System.Drawing.Size(346, 30);
     this.addNewBankBtn.Text = "Добавить название банка";
     this.addNewBankBtn.Click += new System.EventHandler(this.addNewBankBtn_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(25, 134);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(149, 20);
     this.label1.TabIndex = 3;
     this.label1.Text = "Выберите валюту:";
     //
     // comboBoxCur
     //
     this.comboBoxCur.FormattingEnabled = true;
     this.comboBoxCur.Location = new System.Drawing.Point(29, 158);
     this.comboBoxCur.Name = "comboBoxCur";
     this.comboBoxCur.Size = new System.Drawing.Size(103, 28);
     this.comboBoxCur.TabIndex = 4;
     //
     // bestSellBtn
     //
     this.bestSellBtn.Location = new System.Drawing.Point(29, 204);
     this.bestSellBtn.Name = "bestSellBtn";
     this.bestSellBtn.Size = new System.Drawing.Size(233, 33);
     this.bestSellBtn.TabIndex = 5;
     this.bestSellBtn.Text = "Лучший курс (продажа)";
     this.bestSellBtn.UseVisualStyleBackColor = true;
     this.bestSellBtn.Click += new System.EventHandler(this.bestSellBtn_Click);
     //
     // showAllBtn
     //
     this.showAllBtn.Location = new System.Drawing.Point(29, 91);
     this.showAllBtn.Name = "showAllBtn";
     this.showAllBtn.Size = new System.Drawing.Size(233, 33);
     this.showAllBtn.TabIndex = 6;
     this.showAllBtn.Text = "Показать все отделения";
     this.showAllBtn.UseVisualStyleBackColor = true;
     this.showAllBtn.Click += new System.EventHandler(this.showAllBtn_Click);
     //
     // bestBuyBtn
     //
     this.bestBuyBtn.Location = new System.Drawing.Point(29, 243);
     this.bestBuyBtn.Name = "bestBuyBtn";
     this.bestBuyBtn.Size = new System.Drawing.Size(233, 33);
     this.bestBuyBtn.TabIndex = 7;
     this.bestBuyBtn.Text = "Лучший курс (покупка)";
     this.bestBuyBtn.UseVisualStyleBackColor = true;
     this.bestBuyBtn.Click += new System.EventHandler(this.bestBuyBtn_Click);
     //
     // nearestBranchBtn
     //
     this.nearestBranchBtn.Location = new System.Drawing.Point(29, 322);
     this.nearestBranchBtn.Name = "nearestBranchBtn";
     this.nearestBranchBtn.Size = new System.Drawing.Size(233, 61);
     this.nearestBranchBtn.TabIndex = 8;
     this.nearestBranchBtn.Text = "Самое близкое к маркеру отделение";
     this.nearestBranchBtn.UseVisualStyleBackColor = true;
     this.nearestBranchBtn.Click += new System.EventHandler(this.nearestBranchBtn_Click);
     //
     // toolStrip1
     //
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripAddBank,
     this.toolStripAddService,
     this.toolStripRefreshMap,
     this.toolStripRefreshRates,
     this.toolStripZoomIn,
     this.toolStripZoomOut});
     this.toolStrip1.Location = new System.Drawing.Point(0, 33);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.toolStrip1.Size = new System.Drawing.Size(1087, 31);
     this.toolStrip1.TabIndex = 10;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripAddBank
     //
     this.toolStripAddBank.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripAddBank.Image = global::BankMap.Properties.Resources.add121;
     this.toolStripAddBank.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripAddBank.Margin = new System.Windows.Forms.Padding(10, 1, 0, 2);
     this.toolStripAddBank.Name = "toolStripAddBank";
     this.toolStripAddBank.Size = new System.Drawing.Size(28, 28);
     this.toolStripAddBank.Text = "Добавить банк";
     this.toolStripAddBank.Click += new System.EventHandler(this.toolStripAddBank_Click);
     //
     // toolStripAddService
     //
     this.toolStripAddService.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripAddService.Image = global::BankMap.Properties.Resources.add1211;
     this.toolStripAddService.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripAddService.Margin = new System.Windows.Forms.Padding(10, 1, 0, 2);
     this.toolStripAddService.Name = "toolStripAddService";
     this.toolStripAddService.Size = new System.Drawing.Size(28, 28);
     this.toolStripAddService.Text = "Добавить вид услуг";
     this.toolStripAddService.Click += new System.EventHandler(this.toolStripAddService_Click);
     //
     // toolStripRefreshMap
     //
     this.toolStripRefreshMap.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripRefreshMap.Image = global::BankMap.Properties.Resources.update3;
     this.toolStripRefreshMap.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripRefreshMap.Margin = new System.Windows.Forms.Padding(10, 1, 0, 2);
     this.toolStripRefreshMap.Name = "toolStripRefreshMap";
     this.toolStripRefreshMap.Size = new System.Drawing.Size(28, 28);
     this.toolStripRefreshMap.Text = "Обновить карту";
     this.toolStripRefreshMap.Click += new System.EventHandler(this.toolStripRefreshMap_Click);
     //
     // toolStripRefreshRates
     //
     this.toolStripRefreshRates.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripRefreshRates.Image = global::BankMap.Properties.Resources.dollars61;
     this.toolStripRefreshRates.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripRefreshRates.Margin = new System.Windows.Forms.Padding(10, 1, 0, 2);
     this.toolStripRefreshRates.Name = "toolStripRefreshRates";
     this.toolStripRefreshRates.Size = new System.Drawing.Size(28, 28);
     this.toolStripRefreshRates.Text = "Обновить курсы валют";
     this.toolStripRefreshRates.Click += new System.EventHandler(this.toolStripRefreshRates_Click);
     //
     // toolStripZoomIn
     //
     this.toolStripZoomIn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripZoomIn.Image = global::BankMap.Properties.Resources.plus79;
     this.toolStripZoomIn.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripZoomIn.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripZoomIn.Margin = new System.Windows.Forms.Padding(20, 1, 0, 2);
     this.toolStripZoomIn.Name = "toolStripZoomIn";
     this.toolStripZoomIn.Size = new System.Drawing.Size(28, 28);
     this.toolStripZoomIn.Text = "Приблизить";
     this.toolStripZoomIn.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripZoomIn.Click += new System.EventHandler(this.toolStripZoomIn_Click);
     //
     // toolStripZoomOut
     //
     this.toolStripZoomOut.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripZoomOut.Image = global::BankMap.Properties.Resources.minus104;
     this.toolStripZoomOut.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripZoomOut.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripZoomOut.Margin = new System.Windows.Forms.Padding(10, 1, 0, 2);
     this.toolStripZoomOut.Name = "toolStripZoomOut";
     this.toolStripZoomOut.Size = new System.Drawing.Size(28, 28);
     this.toolStripZoomOut.Text = "Отдалить";
     this.toolStripZoomOut.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.toolStripZoomOut.Click += new System.EventHandler(this.toolStripZoomOut_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.pictureBox1.Image = global::BankMap.Properties.Resources.currency_symbol;
     this.pictureBox1.Location = new System.Drawing.Point(29, 413);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(256, 256);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox1.TabIndex = 9;
     this.pictureBox1.TabStop = false;
     //
     // filterMenu
     //
     this.filterMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bankFilterMenu,
     this.serviceFilterMenu});
     this.filterMenu.Name = "filterMenu";
     this.filterMenu.Size = new System.Drawing.Size(83, 29);
     this.filterMenu.Text = "Фильтр";
     //
     // bankFilterMenu
     //
     this.bankFilterMenu.Name = "bankFilterMenu";
     this.bankFilterMenu.Size = new System.Drawing.Size(211, 30);
     this.bankFilterMenu.Text = "По банку";
     //
     // serviceFilterMenu
     //
     this.serviceFilterMenu.Name = "serviceFilterMenu";
     this.serviceFilterMenu.Size = new System.Drawing.Size(211, 30);
     this.serviceFilterMenu.Text = "По услуге";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1087, 615);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.nearestBranchBtn);
     this.Controls.Add(this.bestBuyBtn);
     this.Controls.Add(this.showAllBtn);
     this.Controls.Add(this.bestSellBtn);
     this.Controls.Add(this.comboBoxCur);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.gMapControl);
     this.MainMenuStrip = this.menuStrip1;
     this.MinimumSize = new System.Drawing.Size(1109, 671);
     this.Name = "MainForm";
     this.Text = "Карта отделений банков г. Минска";
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.addOnlyContextMenu.ResumeLayout(false);
     this.removeAddContextMenu.ResumeLayout(false);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components                  = new System.ComponentModel.Container();
     this.btnStartStop                = new System.Windows.Forms.Button();
     this.cmbDevices                  = new System.Windows.Forms.ComboBox();
     this.txtCapturedData             = new System.Windows.Forms.TextBox();
     this.timer1                      = new System.Windows.Forms.Timer(this.components);
     this.menuStrip1                  = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.saveToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.openToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.screenToolStripMenuItem     = new System.Windows.Forms.ToolStripMenuItem();
     this.clearToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.packetsToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.sendWindowToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openFileDialog1             = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialog1             = new System.Windows.Forms.SaveFileDialog();
     this.txtNumPackets               = new System.Windows.Forms.TextBox();
     this.label1                      = new System.Windows.Forms.Label();
     this.txtGUID                     = new System.Windows.Forms.TextBox();
     gMap = new GMap.NET.WindowsForms.GMapControl();
     this.txtLocations = new System.Windows.Forms.TextBox();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnStartStop
     //
     this.btnStartStop.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnStartStop.Location = new System.Drawing.Point(65, 40);
     this.btnStartStop.Name     = "btnStartStop";
     this.btnStartStop.Size     = new System.Drawing.Size(78, 37);
     this.btnStartStop.TabIndex = 0;
     this.btnStartStop.Text     = "Start";
     this.btnStartStop.UseVisualStyleBackColor = true;
     this.btnStartStop.Click += new System.EventHandler(this.btnStartStop_Click);
     //
     // cmbDevices
     //
     this.cmbDevices.FormattingEnabled = true;
     this.cmbDevices.Location          = new System.Drawing.Point(65, 95);
     this.cmbDevices.Name                  = "cmbDevices";
     this.cmbDevices.Size                  = new System.Drawing.Size(410, 21);
     this.cmbDevices.TabIndex              = 1;
     this.cmbDevices.SelectedIndexChanged += new System.EventHandler(this.cmbDevices_SelectedIndexChanged);
     //
     // txtCapturedData
     //
     this.txtCapturedData.Font       = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCapturedData.Location   = new System.Drawing.Point(31, 190);
     this.txtCapturedData.Multiline  = true;
     this.txtCapturedData.Name       = "txtCapturedData";
     this.txtCapturedData.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtCapturedData.Size       = new System.Drawing.Size(399, 509);
     this.txtCapturedData.TabIndex   = 2;
     //
     // timer1
     //
     this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.fileToolStripMenuItem,
         this.screenToolStripMenuItem,
         this.packetsToolStripMenuItem
     });
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name     = "menuStrip1";
     this.menuStrip1.Size     = new System.Drawing.Size(1438, 24);
     this.menuStrip1.TabIndex = 3;
     this.menuStrip1.Text     = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.saveToolStripMenuItem,
         this.openToolStripMenuItem
     });
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // saveToolStripMenuItem
     //
     this.saveToolStripMenuItem.Name   = "saveToolStripMenuItem";
     this.saveToolStripMenuItem.Size   = new System.Drawing.Size(103, 22);
     this.saveToolStripMenuItem.Text   = "Save";
     this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
     //
     // openToolStripMenuItem
     //
     this.openToolStripMenuItem.Name   = "openToolStripMenuItem";
     this.openToolStripMenuItem.Size   = new System.Drawing.Size(103, 22);
     this.openToolStripMenuItem.Text   = "Open";
     this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
     //
     // screenToolStripMenuItem
     //
     this.screenToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.clearToolStripMenuItem
     });
     this.screenToolStripMenuItem.Name = "screenToolStripMenuItem";
     this.screenToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
     this.screenToolStripMenuItem.Text = "Screen";
     //
     // clearToolStripMenuItem
     //
     this.clearToolStripMenuItem.Name = "clearToolStripMenuItem";
     this.clearToolStripMenuItem.Size = new System.Drawing.Size(101, 22);
     this.clearToolStripMenuItem.Text = "Clear";
     //
     // packetsToolStripMenuItem
     //
     this.packetsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.sendWindowToolStripMenuItem
     });
     this.packetsToolStripMenuItem.Name = "packetsToolStripMenuItem";
     this.packetsToolStripMenuItem.Size = new System.Drawing.Size(59, 20);
     this.packetsToolStripMenuItem.Text = "Packets";
     //
     // sendWindowToolStripMenuItem
     //
     this.sendWindowToolStripMenuItem.Name   = "sendWindowToolStripMenuItem";
     this.sendWindowToolStripMenuItem.Size   = new System.Drawing.Size(147, 22);
     this.sendWindowToolStripMenuItem.Text   = "&Send Window";
     this.sendWindowToolStripMenuItem.Click += new System.EventHandler(this.sendWindowToolStripMenuItem_Click);
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // txtNumPackets
     //
     this.txtNumPackets.Location  = new System.Drawing.Point(330, 50);
     this.txtNumPackets.Name      = "txtNumPackets";
     this.txtNumPackets.Size      = new System.Drawing.Size(100, 20);
     this.txtNumPackets.TabIndex  = 4;
     this.txtNumPackets.Text      = "0";
     this.txtNumPackets.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(205, 57);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(97, 13);
     this.label1.TabIndex = 5;
     this.label1.Text     = "Number of packets";
     //
     // txtGUID
     //
     this.txtGUID.Location = new System.Drawing.Point(31, 142);
     this.txtGUID.Name     = "txtGUID";
     this.txtGUID.Size     = new System.Drawing.Size(518, 20);
     this.txtGUID.TabIndex = 6;
     //
     // gMap
     //
     gMap.Bearing             = 0F;
     gMap.CanDragMap          = true;
     gMap.EmptyTileColor      = System.Drawing.Color.Navy;
     gMap.GrayScaleMode       = false;
     gMap.HelperLineOption    = GMap.NET.WindowsForms.HelperLineOptions.DontShow;
     gMap.LevelsKeepInMemmory = 5;
     gMap.Location            = new System.Drawing.Point(447, 190);
     gMap.MarkersEnabled      = true;
     gMap.MaxZoom             = 18;
     gMap.MinZoom             = 2;
     gMap.MouseWheelZoomType  = GMap.NET.MouseWheelZoomType.MousePositionAndCenter;
     gMap.Name                     = "gMap";
     gMap.NegativeMode             = false;
     gMap.PolygonsEnabled          = false;
     gMap.RetryLoadTile            = 0;
     gMap.RoutesEnabled            = false;
     gMap.ScaleMode                = GMap.NET.WindowsForms.ScaleModes.Integer;
     gMap.SelectedAreaFillColor    = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(65)))), ((int)(((byte)(105)))), ((int)(((byte)(225)))));
     gMap.ShowTileGridLines        = false;
     gMap.Size                     = new System.Drawing.Size(979, 509);
     gMap.TabIndex                 = 11;
     gMap.Zoom                     = 2;
     gMap.ShowCenter               = false;
     gMap.IgnoreMarkerOnMouseWheel = true;
     //
     // txtLocations
     //
     this.txtLocations.Location   = new System.Drawing.Point(616, 50);
     this.txtLocations.Multiline  = true;
     this.txtLocations.Name       = "txtLocations";
     this.txtLocations.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtLocations.Size       = new System.Drawing.Size(810, 112);
     this.txtLocations.TabIndex   = 12;
     //
     // frmCapture
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1438, 726);
     this.Controls.Add(this.txtLocations);
     this.Controls.Add(gMap);
     this.Controls.Add(this.txtGUID);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.txtNumPackets);
     this.Controls.Add(this.txtCapturedData);
     this.Controls.Add(this.cmbDevices);
     this.Controls.Add(this.btnStartStop);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name          = "frmCapture";
     this.Text          = "PacketCapture";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
示例#18
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MapForm));
            this.RefreshMapTimer = new System.Windows.Forms.Timer(this.components);
            this.SuspendLayout();
            //
            // RefreshMapTimer
            //
            this.RefreshMapTimer.Interval = 1000;
            this.RefreshMapTimer.Tick    += new System.EventHandler(this.RefreshMapTimer_Tick);
            //
            // MapForm
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize          = new System.Drawing.Size(1024, 768);
            this.Icon  = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Name  = "MapForm";
            this.Text  = "Map";
            this.Load += MapForm_Load;

            this.SpeedLabel           = new Label();
            this.SpeedLabel.Location  = new System.Drawing.Point(10, 10);
            this.SpeedLabel.Size      = new System.Drawing.Size(200, 16);
            this.SpeedLabel.BackColor = System.Drawing.Color.SteelBlue;
            this.Controls.Add(this.SpeedLabel);

            this.LatitudeLabel           = new Label();
            this.LatitudeLabel.Location  = new System.Drawing.Point(412, 10);
            this.LatitudeLabel.Size      = new System.Drawing.Size(200, 16);
            this.LatitudeLabel.BackColor = System.Drawing.Color.SteelBlue;
            this.Controls.Add(this.LatitudeLabel);

            this.LongitudeLabel           = new Label();
            this.LongitudeLabel.Location  = new System.Drawing.Point(814, 10);
            this.LongitudeLabel.Size      = new System.Drawing.Size(200, 16);
            this.LongitudeLabel.BackColor = System.Drawing.Color.SteelBlue;
            this.Controls.Add(this.LongitudeLabel);

            this.MainMap                       = new GMap.NET.WindowsForms.GMapControl();
            this.MainMap.Bearing               = 0F;
            this.MainMap.CanDragMap            = true;
            this.MainMap.Dock                  = System.Windows.Forms.DockStyle.Fill;
            this.MainMap.EmptyTileColor        = System.Drawing.Color.Navy;
            this.MainMap.GrayScaleMode         = false;
            this.MainMap.HelperLineOption      = GMap.NET.WindowsForms.HelperLineOptions.DontShow;
            this.MainMap.LevelsKeepInMemory    = 5;
            this.MainMap.Location              = new System.Drawing.Point(0, 0);
            this.MainMap.MarkersEnabled        = true;
            this.MainMap.MaxZoom               = 2;
            this.MainMap.MinZoom               = 2;
            this.MainMap.MouseWheelZoomEnabled = true;
            this.MainMap.MouseWheelZoomType    = GMap.NET.MouseWheelZoomType.MousePositionAndCenter;
            this.MainMap.Name                  = "MainMap";
            this.MainMap.NegativeMode          = false;
            this.MainMap.PolygonsEnabled       = true;
            this.MainMap.RetryLoadTile         = 0;
            this.MainMap.RoutesEnabled         = true;
            this.MainMap.ScaleMode             = GMap.NET.WindowsForms.ScaleModes.Integer;
            this.MainMap.SelectedAreaFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(65)))), ((int)(((byte)(105)))), ((int)(((byte)(225)))));
            this.MainMap.ShowTileGridLines     = false;
            this.MainMap.TabIndex              = 4;
            this.MainMap.Zoom                  = 0D;
            this.MainMap.BackColor             = System.Drawing.Color.Black;
            this.Controls.Add(this.MainMap);

            this.ResumeLayout(false);
        }
示例#19
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gmap = new GMap.NET.WindowsForms.GMapControl();
     this.panel1 = new System.Windows.Forms.Panel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.cbbKabKota = new System.Windows.Forms.ComboBox();
     this.button4 = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.cbbKomoditas = new System.Windows.Forms.ComboBox();
     this.button3 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.trackBar1 = new System.Windows.Forms.TrackBar();
     this.button1 = new System.Windows.Forms.Button();
     this.textBoxLng = new System.Windows.Forms.TextBox();
     this.textBoxLat = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.comboBoxMapType = new System.Windows.Forms.ComboBox();
     this.comboBoxMode = new System.Windows.Forms.ComboBox();
     this.panel1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
     this.SuspendLayout();
     //
     // gmap
     //
     this.gmap.BackColor = System.Drawing.Color.White;
     this.gmap.Bearing = 0F;
     this.gmap.CanDragMap = true;
     this.gmap.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gmap.EmptyTileColor = System.Drawing.Color.Navy;
     this.gmap.GrayScaleMode = false;
     this.gmap.HelperLineOption = GMap.NET.WindowsForms.HelperLineOptions.DontShow;
     this.gmap.LevelsKeepInMemmory = 5;
     this.gmap.Location = new System.Drawing.Point(0, 0);
     this.gmap.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.gmap.MarkersEnabled = true;
     this.gmap.MaxZoom = 100;
     this.gmap.MinZoom = 2;
     this.gmap.MouseWheelZoomEnabled = true;
     this.gmap.MouseWheelZoomType = GMap.NET.MouseWheelZoomType.MousePositionAndCenter;
     this.gmap.Name = "gmap";
     this.gmap.NegativeMode = false;
     this.gmap.PolygonsEnabled = true;
     this.gmap.RetryLoadTile = 0;
     this.gmap.RoutesEnabled = true;
     this.gmap.ScaleMode = GMap.NET.WindowsForms.ScaleModes.Integer;
     this.gmap.SelectedAreaFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(65)))), ((int)(((byte)(105)))), ((int)(((byte)(225)))));
     this.gmap.ShowTileGridLines = false;
     this.gmap.Size = new System.Drawing.Size(1169, 704);
     this.gmap.TabIndex = 0;
     this.gmap.Zoom = 14D;
     this.gmap.OnMarkerClick += new GMap.NET.WindowsForms.MarkerClick(this.gmap_OnMarkerClick);
     this.gmap.OnMapTypeChanged += new GMap.NET.MapTypeChanged(this.gmap_OnMapTypeChanged);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.SeaGreen;
     this.panel1.Controls.Add(this.groupBox2);
     this.panel1.Controls.Add(this.groupBox1);
     this.panel1.Controls.Add(this.button2);
     this.panel1.Controls.Add(this.trackBar1);
     this.panel1.Controls.Add(this.button1);
     this.panel1.Controls.Add(this.textBoxLng);
     this.panel1.Controls.Add(this.textBoxLat);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.label4);
     this.panel1.Controls.Add(this.label8);
     this.panel1.Controls.Add(this.comboBoxMapType);
     this.panel1.Controls.Add(this.comboBoxMode);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel1.ForeColor = System.Drawing.Color.White;
     this.panel1.Location = new System.Drawing.Point(893, 0);
     this.panel1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(276, 704);
     this.panel1.TabIndex = 1;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.cbbKabKota);
     this.groupBox2.Controls.Add(this.button4);
     this.groupBox2.Location = new System.Drawing.Point(62, 446);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(200, 109);
     this.groupBox2.TabIndex = 45;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Kota";
     //
     // cbbKabKota
     //
     this.cbbKabKota.FormattingEnabled = true;
     this.cbbKabKota.Location = new System.Drawing.Point(13, 22);
     this.cbbKabKota.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbbKabKota.Name = "cbbKabKota";
     this.cbbKabKota.Size = new System.Drawing.Size(178, 25);
     this.cbbKabKota.TabIndex = 39;
     this.cbbKabKota.SelectedIndexChanged += new System.EventHandler(this.comboBoxMapType_SelectedIndexChanged);
     this.cbbKabKota.DropDownClosed += new System.EventHandler(this.comboBoxMapType_DropDownClosed);
     //
     // button4
     //
     this.button4.BackColor = System.Drawing.Color.Maroon;
     this.button4.FlatAppearance.BorderSize = 0;
     this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button4.ForeColor = System.Drawing.Color.White;
     this.button4.Location = new System.Drawing.Point(13, 55);
     this.button4.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(178, 30);
     this.button4.TabIndex = 42;
     this.button4.Text = "Cari";
     this.button4.UseVisualStyleBackColor = false;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.cbbKomoditas);
     this.groupBox1.Controls.Add(this.button3);
     this.groupBox1.Location = new System.Drawing.Point(64, 315);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(200, 109);
     this.groupBox1.TabIndex = 45;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Komoditas";
     //
     // cbbKomoditas
     //
     this.cbbKomoditas.FormattingEnabled = true;
     this.cbbKomoditas.Location = new System.Drawing.Point(13, 22);
     this.cbbKomoditas.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbbKomoditas.Name = "cbbKomoditas";
     this.cbbKomoditas.Size = new System.Drawing.Size(178, 25);
     this.cbbKomoditas.TabIndex = 39;
     this.cbbKomoditas.SelectedIndexChanged += new System.EventHandler(this.comboBoxMapType_SelectedIndexChanged);
     this.cbbKomoditas.DropDownClosed += new System.EventHandler(this.comboBoxMapType_DropDownClosed);
     //
     // button3
     //
     this.button3.BackColor = System.Drawing.Color.Maroon;
     this.button3.FlatAppearance.BorderSize = 0;
     this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button3.ForeColor = System.Drawing.Color.White;
     this.button3.Location = new System.Drawing.Point(13, 55);
     this.button3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(178, 30);
     this.button3.TabIndex = 42;
     this.button3.Text = "Cari";
     this.button3.UseVisualStyleBackColor = false;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // button2
     //
     this.button2.BackColor = System.Drawing.Color.Maroon;
     this.button2.FlatAppearance.BorderSize = 0;
     this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button2.ForeColor = System.Drawing.Color.White;
     this.button2.Location = new System.Drawing.Point(68, 267);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(194, 30);
     this.button2.TabIndex = 44;
     this.button2.Text = "Simpan";
     this.button2.UseVisualStyleBackColor = false;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // trackBar1
     //
     this.trackBar1.BackColor = System.Drawing.Color.White;
     this.trackBar1.Dock = System.Windows.Forms.DockStyle.Left;
     this.trackBar1.LargeChange = 1;
     this.trackBar1.Location = new System.Drawing.Point(0, 0);
     this.trackBar1.Margin = new System.Windows.Forms.Padding(0);
     this.trackBar1.Maximum = 1700;
     this.trackBar1.Minimum = 1;
     this.trackBar1.Name = "trackBar1";
     this.trackBar1.Orientation = System.Windows.Forms.Orientation.Vertical;
     this.trackBar1.Size = new System.Drawing.Size(45, 704);
     this.trackBar1.TabIndex = 43;
     this.trackBar1.TickFrequency = 100;
     this.trackBar1.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     this.trackBar1.Value = 12;
     this.trackBar1.ValueChanged += new System.EventHandler(this.trackBar1_ValueChanged);
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.Maroon;
     this.button1.FlatAppearance.BorderSize = 0;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.ForeColor = System.Drawing.Color.White;
     this.button1.Location = new System.Drawing.Point(68, 229);
     this.button1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(194, 30);
     this.button1.TabIndex = 42;
     this.button1.Text = "Cari";
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // textBoxLng
     //
     this.textBoxLng.Location = new System.Drawing.Point(98, 194);
     this.textBoxLng.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.textBoxLng.Name = "textBoxLng";
     this.textBoxLng.Size = new System.Drawing.Size(164, 22);
     this.textBoxLng.TabIndex = 41;
     //
     // textBoxLat
     //
     this.textBoxLat.Location = new System.Drawing.Point(98, 162);
     this.textBoxLat.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.textBoxLat.Name = "textBoxLat";
     this.textBoxLat.Size = new System.Drawing.Size(164, 22);
     this.textBoxLat.TabIndex = 41;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.ForeColor = System.Drawing.Color.Yellow;
     this.label3.Location = new System.Drawing.Point(65, 197);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(21, 17);
     this.label3.TabIndex = 40;
     this.label3.Text = "Y :";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.ForeColor = System.Drawing.Color.Yellow;
     this.label2.Location = new System.Drawing.Point(65, 162);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(21, 17);
     this.label2.TabIndex = 40;
     this.label2.Text = "X :";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.ForeColor = System.Drawing.Color.Yellow;
     this.label1.Location = new System.Drawing.Point(98, 137);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(58, 17);
     this.label1.TabIndex = 40;
     this.label1.Text = "Kordinat";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.ForeColor = System.Drawing.Color.Yellow;
     this.label4.Location = new System.Drawing.Point(65, 77);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(74, 17);
     this.label4.TabIndex = 40;
     this.label4.Text = "Jenis Peta :";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.ForeColor = System.Drawing.Color.Yellow;
     this.label8.Location = new System.Drawing.Point(65, 18);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(43, 17);
     this.label8.TabIndex = 40;
     this.label8.Text = "Mode";
     //
     // comboBoxMapType
     //
     this.comboBoxMapType.FormattingEnabled = true;
     this.comboBoxMapType.Location = new System.Drawing.Point(68, 98);
     this.comboBoxMapType.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.comboBoxMapType.Name = "comboBoxMapType";
     this.comboBoxMapType.Size = new System.Drawing.Size(194, 25);
     this.comboBoxMapType.TabIndex = 39;
     this.comboBoxMapType.SelectedIndexChanged += new System.EventHandler(this.comboBoxMapType_SelectedIndexChanged);
     this.comboBoxMapType.DropDownClosed += new System.EventHandler(this.comboBoxMapType_DropDownClosed);
     //
     // comboBoxMode
     //
     this.comboBoxMode.FormattingEnabled = true;
     this.comboBoxMode.Location = new System.Drawing.Point(68, 39);
     this.comboBoxMode.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.comboBoxMode.Name = "comboBoxMode";
     this.comboBoxMode.Size = new System.Drawing.Size(194, 25);
     this.comboBoxMode.TabIndex = 39;
     this.comboBoxMode.SelectedIndexChanged += new System.EventHandler(this.comboBoxMode_SelectedIndexChanged);
     this.comboBoxMode.DropDownClosed += new System.EventHandler(this.comboBoxMode_DropDownClosed);
     //
     // FormGreatMap
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1169, 704);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.gmap);
     this.Font = new System.Drawing.Font("Century Gothic", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "FormGreatMap";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "FormGreatMap";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.FormGreatMap_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.map                  = new GMap.NET.WindowsForms.GMapControl();
     this.cbShowPokemon        = new System.Windows.Forms.CheckBox();
     this.buttonRefreshPokemon = new System.Windows.Forms.Button();
     this.cbShowPokeStops      = new System.Windows.Forms.CheckBox();
     this.buttonRefreshForts   = new System.Windows.Forms.Button();
     this.button1              = new System.Windows.Forms.Button();
     this.label3               = new System.Windows.Forms.Label();
     this.label2               = new System.Windows.Forms.Label();
     this.label1               = new System.Windows.Forms.Label();
     this.textBox3             = new System.Windows.Forms.TextBox();
     this.textBox2             = new System.Windows.Forms.TextBox();
     this.textBox1             = new System.Windows.Forms.TextBox();
     this.panel1               = new System.Windows.Forms.Panel();
     this.btnGetPoints         = new System.Windows.Forms.Button();
     this.lblAddress           = new System.Windows.Forms.Label();
     this.tbAddress            = new System.Windows.Forms.TextBox();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // map
     //
     this.map.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                              | System.Windows.Forms.AnchorStyles.Left)
                                                             | System.Windows.Forms.AnchorStyles.Right)));
     this.map.Bearing             = 0F;
     this.map.CanDragMap          = true;
     this.map.EmptyTileColor      = System.Drawing.Color.Navy;
     this.map.GrayScaleMode       = false;
     this.map.HelperLineOption    = GMap.NET.WindowsForms.HelperLineOptions.DontShow;
     this.map.LevelsKeepInMemmory = 5;
     this.map.Location            = new System.Drawing.Point(4, 4);
     this.map.Margin             = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.map.MarkersEnabled     = true;
     this.map.MaxZoom            = 2;
     this.map.MinZoom            = 2;
     this.map.MouseWheelZoomType = GMap.NET.MouseWheelZoomType.MousePositionAndCenter;
     this.map.Name                  = "map";
     this.map.NegativeMode          = false;
     this.map.PolygonsEnabled       = true;
     this.map.RetryLoadTile         = 0;
     this.map.RoutesEnabled         = true;
     this.map.ScaleMode             = GMap.NET.WindowsForms.ScaleModes.Integer;
     this.map.SelectedAreaFillColor = System.Drawing.Color.FromArgb(((int)(((byte)(33)))), ((int)(((byte)(65)))), ((int)(((byte)(105)))), ((int)(((byte)(225)))));
     this.map.ShowTileGridLines     = false;
     this.map.Size                  = new System.Drawing.Size(697, 401);
     this.map.TabIndex              = 1;
     this.map.Zoom                  = 0D;
     this.map.OnMarkerClick        += new GMap.NET.WindowsForms.MarkerClick(this.map_OnMarkerClick);
     this.map.OnMapDrag            += new GMap.NET.MapDrag(this.map_OnMapDrag);
     this.map.Load                 += new System.EventHandler(this.map_Load);
     //
     // cbShowPokemon
     //
     this.cbShowPokemon.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cbShowPokemon.AutoSize   = true;
     this.cbShowPokemon.Checked    = true;
     this.cbShowPokemon.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbShowPokemon.Location   = new System.Drawing.Point(113, 10);
     this.cbShowPokemon.Name       = "cbShowPokemon";
     this.cbShowPokemon.Size       = new System.Drawing.Size(101, 17);
     this.cbShowPokemon.TabIndex   = 22;
     this.cbShowPokemon.Text       = "Show Pokemon";
     this.cbShowPokemon.UseVisualStyleBackColor = true;
     this.cbShowPokemon.Visible            = false;
     this.cbShowPokemon.CheckStateChanged += new System.EventHandler(this.cbShowPokemon_CheckedChanged);
     //
     // buttonRefreshPokemon
     //
     this.buttonRefreshPokemon.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonRefreshPokemon.AutoSize = true;
     this.buttonRefreshPokemon.Location = new System.Drawing.Point(249, 2);
     this.buttonRefreshPokemon.Name     = "buttonRefreshPokemon";
     this.buttonRefreshPokemon.Size     = new System.Drawing.Size(131, 27);
     this.buttonRefreshPokemon.TabIndex = 20;
     this.buttonRefreshPokemon.Text     = "Refresh Pokemon";
     this.buttonRefreshPokemon.UseVisualStyleBackColor = true;
     this.buttonRefreshPokemon.Visible = false;
     this.buttonRefreshPokemon.Click  += new System.EventHandler(this.cbShowPokemon_CheckedChanged);
     //
     // cbShowPokeStops
     //
     this.cbShowPokeStops.Anchor     = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.cbShowPokeStops.AutoSize   = true;
     this.cbShowPokeStops.Checked    = true;
     this.cbShowPokeStops.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbShowPokeStops.Location   = new System.Drawing.Point(4, 10);
     this.cbShowPokeStops.Margin     = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.cbShowPokeStops.Name       = "cbShowPokeStops";
     this.cbShowPokeStops.Size       = new System.Drawing.Size(103, 17);
     this.cbShowPokeStops.TabIndex   = 19;
     this.cbShowPokeStops.Text       = "Show PokeStop";
     this.cbShowPokeStops.UseVisualStyleBackColor = true;
     this.cbShowPokeStops.Visible         = false;
     this.cbShowPokeStops.CheckedChanged += new System.EventHandler(this.cbShowPokeStops_CheckedChanged);
     //
     // buttonRefreshForts
     //
     this.buttonRefreshForts.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonRefreshForts.AutoSize = true;
     this.buttonRefreshForts.Location = new System.Drawing.Point(384, 2);
     this.buttonRefreshForts.Name     = "buttonRefreshForts";
     this.buttonRefreshForts.Size     = new System.Drawing.Size(138, 27);
     this.buttonRefreshForts.TabIndex = 21;
     this.buttonRefreshForts.Text     = "Refresh Pokestops";
     this.buttonRefreshForts.UseVisualStyleBackColor = true;
     this.buttonRefreshForts.Visible = false;
     this.buttonRefreshForts.Click  += new System.EventHandler(this.cbShowPokeStops_CheckedChanged);
     //
     // button1
     //
     this.button1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.button1.Location = new System.Drawing.Point(564, 50);
     this.button1.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(133, 23);
     this.button1.TabIndex = 18;
     this.button1.Text     = "Set Location";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // label3
     //
     this.label3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(380, 53);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(45, 13);
     this.label3.TabIndex = 17;
     this.label3.Text     = "Altitude:";
     //
     // label2
     //
     this.label2.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(186, 53);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(57, 13);
     this.label2.TabIndex = 16;
     this.label2.Text     = "Longitude:";
     //
     // label1
     //
     this.label1.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(1, 53);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(48, 13);
     this.label1.TabIndex = 15;
     this.label1.Text     = "Latitude:";
     //
     // textBox3
     //
     this.textBox3.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.textBox3.Location = new System.Drawing.Point(431, 52);
     this.textBox3.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.textBox3.Name     = "textBox3";
     this.textBox3.Size     = new System.Drawing.Size(125, 20);
     this.textBox3.TabIndex = 14;
     //
     // textBox2
     //
     this.textBox2.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.textBox2.Location     = new System.Drawing.Point(249, 52);
     this.textBox2.Margin       = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.textBox2.Name         = "textBox2";
     this.textBox2.Size         = new System.Drawing.Size(125, 20);
     this.textBox2.TabIndex     = 13;
     this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged);
     //
     // textBox1
     //
     this.textBox1.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.textBox1.Location     = new System.Drawing.Point(55, 52);
     this.textBox1.Margin       = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.textBox1.Name         = "textBox1";
     this.textBox1.Size         = new System.Drawing.Size(125, 20);
     this.textBox1.TabIndex     = 12;
     this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.panel1.Controls.Add(this.cbShowPokeStops);
     this.panel1.Controls.Add(this.cbShowPokemon);
     this.panel1.Controls.Add(this.buttonRefreshPokemon);
     this.panel1.Controls.Add(this.buttonRefreshForts);
     this.panel1.Controls.Add(this.btnGetPoints);
     this.panel1.Controls.Add(this.lblAddress);
     this.panel1.Controls.Add(this.tbAddress);
     this.panel1.Controls.Add(this.textBox1);
     this.panel1.Controls.Add(this.textBox2);
     this.panel1.Controls.Add(this.textBox3);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.button1);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.label3);
     this.panel1.Location = new System.Drawing.Point(2, 335);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(702, 74);
     this.panel1.TabIndex = 23;
     //
     // btnGetPoints
     //
     this.btnGetPoints.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnGetPoints.Location = new System.Drawing.Point(371, 29);
     this.btnGetPoints.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.btnGetPoints.Name     = "btnGetPoints";
     this.btnGetPoints.Size     = new System.Drawing.Size(108, 23);
     this.btnGetPoints.TabIndex = 25;
     this.btnGetPoints.Text     = "Get Point";
     this.btnGetPoints.UseVisualStyleBackColor = true;
     this.btnGetPoints.Click += new System.EventHandler(this.BtnGetPointsClick);
     //
     // lblAddress
     //
     this.lblAddress.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblAddress.AutoSize = true;
     this.lblAddress.Location = new System.Drawing.Point(4, 32);
     this.lblAddress.Name     = "lblAddress";
     this.lblAddress.Size     = new System.Drawing.Size(48, 13);
     this.lblAddress.TabIndex = 24;
     this.lblAddress.Text     = "Address:";
     //
     // tbAddress
     //
     this.tbAddress.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.tbAddress.Location = new System.Drawing.Point(55, 29);
     this.tbAddress.Margin   = new System.Windows.Forms.Padding(4, 4, 4, 4);
     this.tbAddress.Name     = "tbAddress";
     this.tbAddress.Size     = new System.Drawing.Size(312, 20);
     this.tbAddress.TabIndex = 23;
     //
     // LocationPanel
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.map);
     this.Name = "LocationPanel";
     this.Size = new System.Drawing.Size(709, 411);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
示例#21
0
 /// <summary> 
 /// Erforderliche Methode für die Designerunterstützung. 
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     this.button1 = new System.Windows.Forms.Button();
     this.gMapControl1 = new GMap.NET.WindowsForms.GMapControl();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.fldLongitude = new System.Windows.Forms.TextBox();
     this.fldLatitude = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.fldCursorY = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.fldCursorX = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.lineBox = new System.Windows.Forms.GroupBox();
     this.fldLineTyp = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.numLongO = new System.Windows.Forms.NumericUpDown();
     this.label13 = new System.Windows.Forms.Label();
     this.numLatO = new System.Windows.Forms.NumericUpDown();
     this.label14 = new System.Windows.Forms.Label();
     this.numLongB = new System.Windows.Forms.NumericUpDown();
     this.label11 = new System.Windows.Forms.Label();
     this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.label12 = new System.Windows.Forms.Label();
     this.numLongA = new System.Windows.Forms.NumericUpDown();
     this.label10 = new System.Windows.Forms.Label();
     this.numLatA = new System.Windows.Forms.NumericUpDown();
     this.label9 = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.lineBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numLongO)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numLatO)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numLongB)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numLongA)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numLatA)).BeginInit();
     this.SuspendLayout();
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(23, 457);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 0;
     this.button1.Text = "button1";
     this.button1.UseVisualStyleBackColor = true;
     //
     // gMapControl1
     //
     this.gMapControl1.Bearing = 0F;
     this.gMapControl1.CanDragMap = true;
     this.gMapControl1.GrayScaleMode = false;
     this.gMapControl1.LevelsKeepInMemmory = 5;
     this.gMapControl1.Location = new System.Drawing.Point(283, 3);
     this.gMapControl1.MarkersEnabled = true;
     this.gMapControl1.MaxZoom = 2;
     this.gMapControl1.MinZoom = 2;
     this.gMapControl1.MouseWheelZoomType = GMap.NET.MouseWheelZoomType.MousePositionAndCenter;
     this.gMapControl1.Name = "gMapControl1";
     this.gMapControl1.NegativeMode = false;
     this.gMapControl1.PolygonsEnabled = true;
     this.gMapControl1.RetryLoadTile = 0;
     this.gMapControl1.RoutesEnabled = true;
     this.gMapControl1.ShowTileGridLines = false;
     this.gMapControl1.Size = new System.Drawing.Size(500, 500);
     this.gMapControl1.TabIndex = 1;
     this.gMapControl1.Zoom = 0D;
     this.gMapControl1.Load += new System.EventHandler(this.gMapControl1_Load);
     this.gMapControl1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gMapControl1_MouseMove);
     this.gMapControl1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.gMapControl1_MouseUp);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.fldLongitude);
     this.groupBox1.Controls.Add(this.fldLatitude);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.fldCursorY);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.fldCursorX);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Location = new System.Drawing.Point(3, 73);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(187, 61);
     this.groupBox1.TabIndex = 19;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Cursor";
     //
     // fldLongitude
     //
     this.fldLongitude.Location = new System.Drawing.Point(115, 35);
     this.fldLongitude.Name = "fldLongitude";
     this.fldLongitude.ReadOnly = true;
     this.fldLongitude.Size = new System.Drawing.Size(66, 20);
     this.fldLongitude.TabIndex = 7;
     //
     // fldLatitude
     //
     this.fldLatitude.Location = new System.Drawing.Point(115, 9);
     this.fldLatitude.Name = "fldLatitude";
     this.fldLatitude.ReadOnly = true;
     this.fldLatitude.Size = new System.Drawing.Size(66, 20);
     this.fldLatitude.TabIndex = 6;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(56, 35);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(53, 13);
     this.label8.TabIndex = 5;
     this.label8.Text = "longitude:";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(56, 16);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(44, 13);
     this.label7.TabIndex = 4;
     this.label7.Text = "latitude:";
     //
     // fldCursorY
     //
     this.fldCursorY.Location = new System.Drawing.Point(19, 32);
     this.fldCursorY.Name = "fldCursorY";
     this.fldCursorY.ReadOnly = true;
     this.fldCursorY.Size = new System.Drawing.Size(31, 20);
     this.fldCursorY.TabIndex = 3;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(3, 35);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(17, 13);
     this.label6.TabIndex = 2;
     this.label6.Text = "Y:";
     //
     // fldCursorX
     //
     this.fldCursorX.Location = new System.Drawing.Point(19, 13);
     this.fldCursorX.Name = "fldCursorX";
     this.fldCursorX.ReadOnly = true;
     this.fldCursorX.Size = new System.Drawing.Size(31, 20);
     this.fldCursorX.TabIndex = 1;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(3, 16);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(17, 13);
     this.label4.TabIndex = 0;
     this.label4.Text = "X:";
     //
     // lineBox
     //
     this.lineBox.Controls.Add(this.fldLineTyp);
     this.lineBox.Controls.Add(this.label16);
     this.lineBox.Controls.Add(this.label15);
     this.lineBox.Controls.Add(this.numLongO);
     this.lineBox.Controls.Add(this.label13);
     this.lineBox.Controls.Add(this.numLatO);
     this.lineBox.Controls.Add(this.label14);
     this.lineBox.Controls.Add(this.numLongB);
     this.lineBox.Controls.Add(this.label11);
     this.lineBox.Controls.Add(this.numericUpDown1);
     this.lineBox.Controls.Add(this.label12);
     this.lineBox.Controls.Add(this.numLongA);
     this.lineBox.Controls.Add(this.label10);
     this.lineBox.Controls.Add(this.numLatA);
     this.lineBox.Controls.Add(this.label9);
     this.lineBox.Enabled = false;
     this.lineBox.Location = new System.Drawing.Point(3, 235);
     this.lineBox.Name = "lineBox";
     this.lineBox.Size = new System.Drawing.Size(187, 176);
     this.lineBox.TabIndex = 20;
     this.lineBox.TabStop = false;
     this.lineBox.Text = "Line";
     //
     // fldLineTyp
     //
     this.fldLineTyp.Location = new System.Drawing.Point(78, 13);
     this.fldLineTyp.Name = "fldLineTyp";
     this.fldLineTyp.ReadOnly = true;
     this.fldLineTyp.Size = new System.Drawing.Size(100, 20);
     this.fldLineTyp.TabIndex = 14;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(7, 16);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(48, 13);
     this.label16.TabIndex = 13;
     this.label16.Text = "Line Typ";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(7, 118);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(165, 13);
     this.label15.TabIndex = 12;
     this.label15.Text = "Point O is used for the Orientation";
     //
     // numLongO
     //
     this.numLongO.DecimalPlaces = 12;
     this.numLongO.Increment = new decimal(new int[] {
     1,
     0,
     0,
     262144});
     this.numLongO.Location = new System.Drawing.Point(79, 152);
     this.numLongO.Name = "numLongO";
     this.numLongO.ReadOnly = true;
     this.numLongO.Size = new System.Drawing.Size(100, 20);
     this.numLongO.TabIndex = 11;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(6, 154);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(68, 13);
     this.label13.TabIndex = 10;
     this.label13.Text = "Longitude O:";
     //
     // numLatO
     //
     this.numLatO.DecimalPlaces = 12;
     this.numLatO.Increment = new decimal(new int[] {
     1,
     0,
     0,
     262144});
     this.numLatO.Location = new System.Drawing.Point(79, 133);
     this.numLatO.Name = "numLatO";
     this.numLatO.ReadOnly = true;
     this.numLatO.Size = new System.Drawing.Size(100, 20);
     this.numLatO.TabIndex = 9;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(6, 135);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(59, 13);
     this.label14.TabIndex = 8;
     this.label14.Text = "Latitude O:";
     //
     // numLongB
     //
     this.numLongB.DecimalPlaces = 12;
     this.numLongB.Increment = new decimal(new int[] {
     1,
     0,
     0,
     262144});
     this.numLongB.Location = new System.Drawing.Point(78, 97);
     this.numLongB.Name = "numLongB";
     this.numLongB.ReadOnly = true;
     this.numLongB.Size = new System.Drawing.Size(100, 20);
     this.numLongB.TabIndex = 7;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(5, 99);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(67, 13);
     this.label11.TabIndex = 6;
     this.label11.Text = "Longitude B:";
     //
     // numericUpDown1
     //
     this.numericUpDown1.DecimalPlaces = 12;
     this.numericUpDown1.Increment = new decimal(new int[] {
     1,
     0,
     0,
     262144});
     this.numericUpDown1.Location = new System.Drawing.Point(78, 78);
     this.numericUpDown1.Name = "numericUpDown1";
     this.numericUpDown1.ReadOnly = true;
     this.numericUpDown1.Size = new System.Drawing.Size(100, 20);
     this.numericUpDown1.TabIndex = 5;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(5, 80);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(58, 13);
     this.label12.TabIndex = 4;
     this.label12.Text = "Latitude B:";
     //
     // numLongA
     //
     this.numLongA.DecimalPlaces = 12;
     this.numLongA.Increment = new decimal(new int[] {
     1,
     0,
     0,
     262144});
     this.numLongA.Location = new System.Drawing.Point(79, 55);
     this.numLongA.Maximum = new decimal(new int[] {
     180,
     0,
     0,
     0});
     this.numLongA.Minimum = new decimal(new int[] {
     180,
     0,
     0,
     -2147483648});
     this.numLongA.Name = "numLongA";
     this.numLongA.ReadOnly = true;
     this.numLongA.Size = new System.Drawing.Size(100, 20);
     this.numLongA.TabIndex = 3;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(6, 57);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(67, 13);
     this.label10.TabIndex = 2;
     this.label10.Text = "Longitude A:";
     //
     // numLatA
     //
     this.numLatA.DecimalPlaces = 12;
     this.numLatA.Increment = new decimal(new int[] {
     1,
     0,
     0,
     262144});
     this.numLatA.Location = new System.Drawing.Point(79, 36);
     this.numLatA.Maximum = new decimal(new int[] {
     190,
     0,
     0,
     0});
     this.numLatA.Minimum = new decimal(new int[] {
     190,
     0,
     0,
     -2147483648});
     this.numLatA.Name = "numLatA";
     this.numLatA.ReadOnly = true;
     this.numLatA.Size = new System.Drawing.Size(100, 20);
     this.numLatA.TabIndex = 1;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(6, 38);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(58, 13);
     this.label9.TabIndex = 0;
     this.label9.Text = "Latitude A:";
     //
     // MapSelection
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.lineBox);
     this.Controls.Add(this.gMapControl1);
     this.Controls.Add(this.button1);
     this.Name = "MapSelection";
     this.Size = new System.Drawing.Size(786, 555);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.lineBox.ResumeLayout(false);
     this.lineBox.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numLongO)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numLatO)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numLongB)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numLongA)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numLatA)).EndInit();
     this.ResumeLayout(false);
 }