Ionite
2 years ago
5 changed files with 112 additions and 11 deletions
@ -0,0 +1,17 @@ |
|||||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||||
|
<Page |
||||||
|
x:Class="StabilityMatrix.LaunchPage" |
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||||
|
xmlns:local="using:StabilityMatrix" |
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
||||||
|
mc:Ignorable="d" |
||||||
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> |
||||||
|
|
||||||
|
<Grid> |
||||||
|
|
||||||
|
<Button x:Name="LaunchButton" Content="Launch" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Click="LaunchButton_OnClick"/> |
||||||
|
|
||||||
|
</Grid> |
||||||
|
</Page> |
@ -0,0 +1,36 @@ |
|||||||
|
using Microsoft.UI.Xaml; |
||||||
|
using Microsoft.UI.Xaml.Controls; |
||||||
|
using Microsoft.UI.Xaml.Controls.Primitives; |
||||||
|
using Microsoft.UI.Xaml.Data; |
||||||
|
using Microsoft.UI.Xaml.Input; |
||||||
|
using Microsoft.UI.Xaml.Media; |
||||||
|
using Microsoft.UI.Xaml.Navigation; |
||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.IO; |
||||||
|
using System.Linq; |
||||||
|
using System.Runtime.InteropServices.WindowsRuntime; |
||||||
|
using Windows.Foundation; |
||||||
|
using Windows.Foundation.Collections; |
||||||
|
|
||||||
|
// To learn more about WinUI, the WinUI project structure, |
||||||
|
// and more about our project templates, see: http://aka.ms/winui-project-info. |
||||||
|
|
||||||
|
namespace StabilityMatrix |
||||||
|
{ |
||||||
|
/// <summary> |
||||||
|
/// An empty page that can be used on its own or navigated to within a Frame. |
||||||
|
/// </summary> |
||||||
|
public sealed partial class LaunchPage : Page |
||||||
|
{ |
||||||
|
public LaunchPage() |
||||||
|
{ |
||||||
|
this.InitializeComponent(); |
||||||
|
} |
||||||
|
|
||||||
|
private void LaunchButton_OnClick(object sender, RoutedEventArgs e) |
||||||
|
{ |
||||||
|
throw new NotImplementedException(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue