예제 #1
0
파일: CanvasBackend.cs 프로젝트: nbros/xwt
        public CustomCanvas()
        {
            GtkWorkarounds.FixContainerLeak(this);

            WidgetFlags  |= Gtk.WidgetFlags.AppPaintable;
            VisibleWindow = false;
        }
예제 #2
0
        public DesignerBox()
        {
            GtkWorkarounds.FixContainerLeak(this);

            surface = new Gtk.EventBox();
            surface.ShowAll();
            surface.VisibleWindow = false;
            surface.Parent        = this;
        }
예제 #3
0
파일: BoxBackend.cs 프로젝트: wesreid/xwt
 public CustomContainer()
 {
     GtkWorkarounds.FixContainerLeak(this);
     WidgetFlags |= Gtk.WidgetFlags.NoWindow;
 }
예제 #4
0
 public static void FixContainerLeak(this Gtk.Container c)
 {
     GtkWorkarounds.FixContainerLeak(c);
 }