Skip to content

Commit 5e0a187

Browse files
committed
* Init
1 parent e7e06d8 commit 5e0a187

File tree

6 files changed

+30
-38
lines changed

6 files changed

+30
-38
lines changed

MemPlus/App.xaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<Application x:Class="MemPlus.App"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns:local="clr-namespace:MemPlus"
5-
StartupUri="MainWindow.xaml">
4+
StartupUri="Windows/MainWindow.xaml">
65
<Application.Resources>
76

87
</Application.Resources>

MemPlus/MainWindow.xaml.cs

Lines changed: 0 additions & 28 deletions
This file was deleted.

MemPlus/MemPlus.csproj

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
<ErrorReport>prompt</ErrorReport>
3434
<WarningLevel>4</WarningLevel>
3535
</PropertyGroup>
36+
<PropertyGroup>
37+
<StartupObject>MemPlus.App</StartupObject>
38+
</PropertyGroup>
3639
<ItemGroup>
3740
<Reference Include="System" />
3841
<Reference Include="System.Data" />
@@ -54,15 +57,15 @@
5457
<Generator>MSBuild:Compile</Generator>
5558
<SubType>Designer</SubType>
5659
</ApplicationDefinition>
57-
<Page Include="MainWindow.xaml">
60+
<Page Include="Windows\MainWindow.xaml">
5861
<Generator>MSBuild:Compile</Generator>
5962
<SubType>Designer</SubType>
6063
</Page>
6164
<Compile Include="App.xaml.cs">
6265
<DependentUpon>App.xaml</DependentUpon>
6366
<SubType>Code</SubType>
6467
</Compile>
65-
<Compile Include="MainWindow.xaml.cs">
68+
<Compile Include="Windows\MainWindow.xaml.cs">
6669
<DependentUpon>MainWindow.xaml</DependentUpon>
6770
<SubType>Code</SubType>
6871
</Compile>
@@ -93,5 +96,8 @@
9396
<ItemGroup>
9497
<None Include="App.config" />
9598
</ItemGroup>
99+
<ItemGroup>
100+
<Folder Include="Classes\" />
101+
</ItemGroup>
96102
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
97103
</Project>

MemPlus/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
// set of attributes. Change these attribute values to modify the information
99
// associated with an assembly.
1010
[assembly: AssemblyTitle("MemPlus")]
11-
[assembly: AssemblyDescription("")]
11+
[assembly: AssemblyDescription("MemPlus")]
1212
[assembly: AssemblyConfiguration("")]
13-
[assembly: AssemblyCompany("")]
13+
[assembly: AssemblyCompany("CodeDead")]
1414
[assembly: AssemblyProduct("MemPlus")]
15-
[assembly: AssemblyCopyright("Copyright © 2018")]
15+
[assembly: AssemblyCopyright("Copyright © CodeDead 2018")]
1616
[assembly: AssemblyTrademark("")]
1717
[assembly: AssemblyCulture("")]
1818

MemPlus/MainWindow.xaml renamed to MemPlus/Windows/MainWindow.xaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
<Window x:Class="MemPlus.MainWindow"
1+
<Window x:Class="MemPlus.Windows.MainWindow"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6-
xmlns:local="clr-namespace:MemPlus"
6+
xmlns:local="clr-namespace:MemPlus.Windows"
77
mc:Ignorable="d"
8-
Title="MainWindow" Height="350" Width="525">
8+
Title="MemPlus" Height="350" Width="525" WindowStartupLocation="CenterScreen">
99
<Grid>
1010

1111
</Grid>

MemPlus/Windows/MainWindow.xaml.cs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using System.Windows;
2+
3+
namespace MemPlus.Windows
4+
{
5+
/// <summary>
6+
/// Interaction logic for MainWindow.xaml
7+
/// </summary>
8+
public partial class MainWindow : Window
9+
{
10+
public MainWindow()
11+
{
12+
InitializeComponent();
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)