Close() public method

public Close ( ) : void
return void
Exemplo n.º 1
0
 public static void MakeFormCanvas(Form form1, UISurfaceViewportControl surfaceViewportControl)
 {
     form1.FormClosing += (s, e) =>
     {
         surfaceViewportControl.Close();
     };
 }
Exemplo n.º 2
0
 static void MakeFormCanvas(Form form1, LayoutFarm.UI.UISurfaceViewportControl surfaceViewportControl)
 {
     form1.FormClosing += (s, e) =>
     {
         surfaceViewportControl.Close();
     };
 }