Files
wgu-c971/WguApp/Views/TestPage.xaml

39 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="WguApp.Views.TestPage"
Title="Test">
<ContentPage.Content>
<VerticalStackLayout Spacing="10">
<Button
Text="Test notification"
Clicked="TestBtn_OnClicked"/>
<Button Text="List scheduled notifications"
Clicked="ListNotifs_Clicked"/>
<Button Text="Clear all notifications"
Clicked="ClearAllNotifs_Clicked"/>
<Button Text="Test Share"
Clicked="ShareButton_OnClick"/>
<Button
Text="Add sample data"
Clicked="AddData_OnCLicked"></Button>
<Button Text="Delete data"
Clicked="Delete_OnClicked"/>
<Button Text="Test logger"
Clicked="TestLogger_Clicked"/>
<Button Text="Show log file"
Clicked="ShowLog_Clicked"/>
<Button Text="Clear Log"
Clicked="ClearLog_Clicked"/>
</VerticalStackLayout>
</ContentPage.Content>
</ContentPage>