modif for xaml

test_old_branch
rportet 1 year ago
parent 4297dd49a8
commit c367340758

@ -7,6 +7,9 @@
<ScrollView>
<VerticalStackLayout>
<Grid Style="{StaticResource GridMain}">
<controls:GoBack
InfoClicked="OnGoBackClicked"
/>
<controls:GoBack></controls:GoBack>
<Label Text="Credits"
Style="{StaticResource Title}"/>

@ -6,4 +6,8 @@ public partial class Credits : ContentPage
{
InitializeComponent();
}
public void OnGoBackClicked(object sender, EventArgs e)
{
Navigation.PopAsync();
}
}

@ -8,7 +8,9 @@
<VerticalStackLayout Spacing="25" Padding="5">
<Grid Style="{StaticResource GridMain}">
<controls:GoBack></controls:GoBack>
<controls:GoBack
InfoClicked="OnGoBackClicked"
/>
<Label Text="Settings"
Style="{StaticResource Title}"/>
</Grid>

@ -6,4 +6,9 @@ public partial class Settings : ContentPage
{
InitializeComponent();
}
public void OnGoBackClicked(object sender, EventArgs e)
{
Navigation.PopAsync();
}
}
Loading…
Cancel
Save