21 lines
429 B
C#
21 lines
429 B
C#
using CommunityToolkit.Mvvm.Messaging;
|
|
using Template.Shared.Core.Messages;
|
|
|
|
namespace Template.Maui
|
|
{
|
|
public partial class MainPage : ContentPage
|
|
{
|
|
public MainPage()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override bool OnBackButtonPressed()
|
|
{
|
|
WeakReferenceMessenger.Default.Send(new HardwareBackMessage("back"));
|
|
return true;
|
|
}
|
|
|
|
}
|
|
}
|