CLEON CONNECTOR  1.0
Parameter updating SW for cloud-offloaded GPS receiver (CLEON)
Form2.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.Data;
5 using System.Drawing;
6 using System.Linq;
7 using System.Text;
8 using System.Windows.Forms;
9 
10 namespace CLEON_Connector
11 {
12  public partial class Form2 : Form
13  {
14  public Form2()
15  {
16  this.StartPosition = FormStartPosition.Manual;
17  this.Location = new Point(Form1.ActiveForm.Location.X + Form1.ActiveForm.Size.Width, Form1.ActiveForm.Location.Y);
18 
19  InitializeComponent();
20  }
21  }
22 }