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