コード例 #1
0
        public HPanedThin()
        {
            GtkWorkarounds.FixContainerLeak(this);
#if MAC
            if (Core.Platform.IsMac)
            {
                handle = new CustomMacPanedHandle(this);
            }
            else
#endif
            handle = new CustomGtkPanedHandle(this);
        }
コード例 #2
0
ファイル: HPanedThin.cs プロジェクト: zcf7822/monodevelop
 public HPanedThin()
 {
     GtkWorkarounds.FixContainerLeak(this);
     handle        = new CustomPanedHandle(this);
     handle.Parent = this;
 }
コード例 #3
0
		public HPanedThin ()
		{
			Mono.TextEditor.GtkWorkarounds.FixContainerLeak (this);
			handle = new CustomPanedHandle (this);
			handle.Parent = this;
		}
コード例 #4
0
		public VPanedThin ()
		{
			GtkWorkarounds.FixContainerLeak (this);
			handle = new CustomPanedHandle (this);
			handle.Parent = this;
		}
コード例 #5
0
ファイル: VPanedThin.cs プロジェクト: zendbit/monodevelop
 public VPanedThin()
 {
     Mono.TextEditor.GtkWorkarounds.FixContainerLeak(this);
     handle        = new CustomPanedHandle(this);
     handle.Parent = this;
 }
コード例 #6
0
ファイル: VPanedThin.cs プロジェクト: noah1510/dotdevelop
 public VPanedThin()
 {
     GtkWorkarounds.FixContainerLeak(this);
     handle = new CustomGtkPanedHandle(this);
 }