Exemplo n.º 1
0
        private void MainServerForm_Location(object sender, EventArgs e)
        {
            var location = Location;

            location.X += Width;
            TraceOps.SetLogPosition(location);
        }
Exemplo n.º 2
0
 private void MainClientForm_Location(object sender, EventArgs e)
 {
     if (Visible == true)
     {
         var location = Location;
         location.X += Width;
         TraceOps.SetLogPosition(location);
     }
     else
     {
         TraceOps.SetLogHidden();
     }
 }