diff --git a/Sources/Stim/Stim.sln b/Sources/Stim/Stim.sln new file mode 100644 index 0000000..f15be14 --- /dev/null +++ b/Sources/Stim/Stim.sln @@ -0,0 +1,27 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31611.283 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Stim", "Stim\Stim.csproj", "{88365436-AFDF-4183-B010-C13784779E6B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {88365436-AFDF-4183-B010-C13784779E6B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {88365436-AFDF-4183-B010-C13784779E6B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {88365436-AFDF-4183-B010-C13784779E6B}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {88365436-AFDF-4183-B010-C13784779E6B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {88365436-AFDF-4183-B010-C13784779E6B}.Release|Any CPU.Build.0 = Release|Any CPU + {88365436-AFDF-4183-B010-C13784779E6B}.Release|Any CPU.Deploy.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572} + EndGlobalSection +EndGlobal diff --git a/Sources/Stim/Stim/App.xaml b/Sources/Stim/Stim/App.xaml new file mode 100644 index 0000000..0a0a4fe --- /dev/null +++ b/Sources/Stim/Stim/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/Sources/Stim/Stim/App.xaml.cs b/Sources/Stim/Stim/App.xaml.cs new file mode 100644 index 0000000..5a94200 --- /dev/null +++ b/Sources/Stim/Stim/App.xaml.cs @@ -0,0 +1,11 @@ +namespace Stim; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } +} diff --git a/Sources/Stim/Stim/AppShell.xaml b/Sources/Stim/Stim/AppShell.xaml new file mode 100644 index 0000000..5499c11 --- /dev/null +++ b/Sources/Stim/Stim/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/Sources/Stim/Stim/AppShell.xaml.cs b/Sources/Stim/Stim/AppShell.xaml.cs new file mode 100644 index 0000000..69f710c --- /dev/null +++ b/Sources/Stim/Stim/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace Stim; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} diff --git a/Sources/Stim/Stim/MainPage.xaml b/Sources/Stim/Stim/MainPage.xaml new file mode 100644 index 0000000..19943d5 --- /dev/null +++ b/Sources/Stim/Stim/MainPage.xaml @@ -0,0 +1,48 @@ + + + + + + + + +