Пример #1
0
        public SectionList()
        {
            GtkWorkarounds.FixContainerLeak(this);

            this.WidgetFlags |= WidgetFlags.NoWindow;
            WidthRequest      = 100;
            EnsureLayout();
        }
Пример #2
0
        public HPanedThin()
        {
            GtkWorkarounds.FixContainerLeak(this);
#if MAC
            if (Core.Platform.IsMac)
            {
                handle = new CustomMacPanedHandle(this);
            }
            else
#endif
            handle = new CustomGtkPanedHandle(this);
        }
Пример #3
0
 public HPanedThin()
 {
     GtkWorkarounds.FixContainerLeak(this);
     handle        = new CustomPanedHandle(this);
     handle.Parent = this;
 }
Пример #4
0
 public VPanedThin()
 {
     GtkWorkarounds.FixContainerLeak(this);
     handle = new CustomGtkPanedHandle(this);
 }