Example #1
0
 private void TrackableOff_Click(object sender, EventArgs e)
 {
     TrackableOff.Hide();
     TrackableOn.Show();
     this.FormBorderStyle = FormBorderStyle.SizableToolWindow;
 }
Example #2
0
 private void TrackableOn_Click(object sender, EventArgs e)
 {
     this.FormBorderStyle = FormBorderStyle.None;
     TrackableOff.Show();
     TrackableOn.Hide();
 }