Browse Source

File renaming

pull/335/head
Nikita Tsukanov 10 years ago
parent
commit
0de8b0a6ea
  1. 2
      src/Perspex.Application/Designer/DesignerAssist.cs
  2. 2
      src/Perspex.Application/Perspex.Application.csproj
  3. 2
      src/Windows/Perspex.Designer/AppHost/PerspexAppHost.cs

2
src/Perspex.Application/Designer/Designer.cs → src/Perspex.Application/Designer/DesignerAssist.cs

@ -12,7 +12,7 @@ using Perspex.Themes.Default;
namespace Perspex.Designer
{
class Designer
class DesignerAssist
{
class DesignerApp : Application
{

2
src/Perspex.Application/Perspex.Application.csproj

@ -89,7 +89,7 @@
<Link>Properties\SharedAssemblyInfo.cs</Link>
</Compile>
<Compile Include="Application.cs" />
<Compile Include="Designer\Designer.cs" />
<Compile Include="Designer\DesignerAssist.cs" />
<Compile Include="Designer\DesignerApi.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>

2
src/Windows/Perspex.Designer/AppHost/PerspexAppHost.cs

@ -201,7 +201,7 @@ namespace Perspex.Designer.AppHost
log("Initializing built-in designer");
var dic = new Dictionary<string, object>();
Api = new DesignerApi(dic) {OnResize = OnResize, OnWindowCreated = OnWindowCreated};
LookupStaticMethod("Perspex.Designer.Designer", "Init").Invoke(null, new object[] {dic});
LookupStaticMethod("Perspex.Designer.DesignerAssist", "Init").Invoke(null, new object[] {dic});
_window = new Control
{

Loading…
Cancel
Save