public SectionList() { GtkWorkarounds.FixContainerLeak(this); this.WidgetFlags |= WidgetFlags.NoWindow; WidthRequest = 100; EnsureLayout(); }
public HPanedThin() { GtkWorkarounds.FixContainerLeak(this); #if MAC if (Core.Platform.IsMac) { handle = new CustomMacPanedHandle(this); } else #endif handle = new CustomGtkPanedHandle(this); }
public HPanedThin() { GtkWorkarounds.FixContainerLeak(this); handle = new CustomPanedHandle(this); handle.Parent = this; }
public VPanedThin() { GtkWorkarounds.FixContainerLeak(this); handle = new CustomGtkPanedHandle(this); }