19 changed files with 143 additions and 62 deletions
@ -0,0 +1,23 @@ |
|||||||
|
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
|
using System; |
||||||
|
using System.Runtime.Remoting.Lifetime; |
||||||
|
|
||||||
|
namespace ICSharpCode.FormsDesigner |
||||||
|
{ |
||||||
|
/// <summary>
|
||||||
|
/// Description of FormsDesignerAppDomainServer.
|
||||||
|
/// </summary>
|
||||||
|
public class FormsDesignerAppDomainServer : MarshalByRefObject, ISponsor |
||||||
|
{ |
||||||
|
public FormsDesignerAppDomainServer() |
||||||
|
{ |
||||||
|
} |
||||||
|
|
||||||
|
public TimeSpan Renewal(ILease lease) |
||||||
|
{ |
||||||
|
throw new NotImplementedException(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,28 @@ |
|||||||
|
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
|
||||||
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
||||||
|
|
||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Drawing.Design; |
||||||
|
using System.Diagnostics; |
||||||
|
using System.IO; |
||||||
|
using System.Reflection; |
||||||
|
using ICSharpCode.Core; |
||||||
|
using ICSharpCode.FormsDesigner.Gui; |
||||||
|
using ICSharpCode.FormsDesigner.Services; |
||||||
|
using ICSharpCode.SharpDevelop; |
||||||
|
using ICSharpCode.SharpDevelop.Dom; |
||||||
|
using ICSharpCode.SharpDevelop.Gui; |
||||||
|
using ICSharpCode.SharpDevelop.Project; |
||||||
|
using ICSharpCode.SharpDevelop.Widgets.SideBar; |
||||||
|
|
||||||
|
namespace ICSharpCode.FormsDesigner |
||||||
|
{ |
||||||
|
public class FormsDesignerSideBar : SharpDevelopSideBar |
||||||
|
{ |
||||||
|
public FormsDesignerSideBar() |
||||||
|
{ |
||||||
|
this.sideTabContextMenuPath = "/SharpDevelop/Workbench/SharpDevelopSideBar/SideTab/FormsDesignerContextMenu"; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue