Ejemplo n.º 1
0
        public HPanedThin()
        {
            GtkWorkarounds.FixContainerLeak(this);
#if MAC
            if (Core.Platform.IsMac)
            {
                handle = new CustomMacPanedHandle(this);
            }
            else
#endif
            handle = new CustomGtkPanedHandle(this);
        }
Ejemplo n.º 2
0
 public HPanedThin()
 {
     GtkWorkarounds.FixContainerLeak(this);
     handle        = new CustomPanedHandle(this);
     handle.Parent = this;
 }
Ejemplo n.º 3
0
		public HPanedThin ()
		{
			Mono.TextEditor.GtkWorkarounds.FixContainerLeak (this);
			handle = new CustomPanedHandle (this);
			handle.Parent = this;
		}
Ejemplo n.º 4
0
		public VPanedThin ()
		{
			GtkWorkarounds.FixContainerLeak (this);
			handle = new CustomPanedHandle (this);
			handle.Parent = this;
		}
Ejemplo n.º 5
0
 public VPanedThin()
 {
     Mono.TextEditor.GtkWorkarounds.FixContainerLeak(this);
     handle        = new CustomPanedHandle(this);
     handle.Parent = this;
 }
Ejemplo n.º 6
0
 public VPanedThin()
 {
     GtkWorkarounds.FixContainerLeak(this);
     handle = new CustomGtkPanedHandle(this);
 }