File tree Expand file tree Collapse file tree 6 files changed +30
-38
lines changed Expand file tree Collapse file tree 6 files changed +30
-38
lines changed Original file line number Diff line number Diff line change 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>
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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" />
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 >
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 >
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments