1
0
mirror of https://github.com/DarthAffe/Arge.git synced 2022-11-28 19:26:16 +00:00

Fixed code issues

This commit is contained in:
Darth Affe 2017-06-11 16:08:22 +02:00
parent 0f79ad4b87
commit 58eb468aa7
3 changed files with 4 additions and 14 deletions

View File

@ -110,7 +110,6 @@
<Compile Include="Configuration\ConfigEntryType.cs" />
<Compile Include="Controls\Window\BlurredDecorationWindow.cs" />
<Compile Include="Controls\Buttons\ImageButton.cs" />
<Compile Include="Enums\NavigationTargets.cs" />
<Compile Include="Extensions\EnumExtension.cs" />
<Compile Include="Resources\CachedResourceDictionary.cs" />
<Compile Include="Resources\Fonts.cs" />
@ -160,7 +159,9 @@
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<Folder Include="Enums\" />
</ItemGroup>
<ItemGroup>
<Page Include="Converter\Converter.xaml">
<Generator>MSBuild:Compile</Generator>

View File

@ -1,11 +0,0 @@
namespace Arge.Enums
{
public enum NavigationTargets
{
Navigation,
Layers,
Selection,
Action,
Surface
}
}

View File

@ -15,7 +15,7 @@ namespace Arge.ViewModels
#region Constructors
public AbstractViewModel(string urlPathSegment, IScreen screen)
protected AbstractViewModel(string urlPathSegment, IScreen screen)
{
this.UrlPathSegment = urlPathSegment;
this.HostScreen = screen;