Esempio n. 1
0
 ///
 public void AttachTo(GuiWindowCtrl window)
 {
     InternalUnsafeMethods.AttachTo__Args _args = new InternalUnsafeMethods.AttachTo__Args()
     {
         window = window.ObjectPtr,
     };
     InternalUnsafeMethods.AttachTo()(ObjectPtr, _args);
 }
Esempio n. 2
0
 /// <description>
 /// Attach<paramref name="" /> bottomWindow to
 /// </description>
 /// <param name="bottomWindow"></param>
 /// <param name="topWindow"></param>
 public static void Attach(GuiWindowCtrl bottomWindow, GuiWindowCtrl topWindow)
 {
     InternalUnsafeMethods.Attach__Args _args = new InternalUnsafeMethods.Attach__Args()
     {
         bottomWindow = bottomWindow.ObjectPtr,
         topWindow    = topWindow.ObjectPtr,
     };
     InternalUnsafeMethods.Attach()(_args);
 }