diff --git a/Sources/Stim/Stim/DetailledPage.xaml b/Sources/Stim/Stim/DetailledPage.xaml new file mode 100644 index 0000000..1587dc7 --- /dev/null +++ b/Sources/Stim/Stim/DetailledPage.xaml @@ -0,0 +1,232 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Sources/Stim/Stim/DetailledPage.xaml.cs b/Sources/Stim/Stim/DetailledPage.xaml.cs new file mode 100644 index 0000000..52b0924 --- /dev/null +++ b/Sources/Stim/Stim/DetailledPage.xaml.cs @@ -0,0 +1,9 @@ +namespace Stim; + +public partial class DetailledPage : ContentPage +{ + public DetailledPage() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/Sources/Stim/Stim/MainPage.xaml b/Sources/Stim/Stim/MainPage.xaml index 9dde5a3..097d884 100644 --- a/Sources/Stim/Stim/MainPage.xaml +++ b/Sources/Stim/Stim/MainPage.xaml @@ -18,7 +18,7 @@ - + diff --git a/Sources/Stim/Stim/MainPage.xaml.cs b/Sources/Stim/Stim/MainPage.xaml.cs index 5575784..af0550d 100644 --- a/Sources/Stim/Stim/MainPage.xaml.cs +++ b/Sources/Stim/Stim/MainPage.xaml.cs @@ -2,10 +2,13 @@ public partial class MainPage : ContentPage { - int count = 0; - public MainPage() { InitializeComponent(); } + + private async void Button_Clicked(object sender, EventArgs e) + { + await Navigation.PushModalAsync(new DetailledPage()); + } } diff --git a/Sources/Stim/Stim/Stim.csproj b/Sources/Stim/Stim/Stim.csproj index f045beb..cfb0955 100644 --- a/Sources/Stim/Stim/Stim.csproj +++ b/Sources/Stim/Stim/Stim.csproj @@ -48,4 +48,10 @@ + + + MSBuild:Compile + + +