-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMessagePage.xaml
More file actions
17 lines (16 loc) · 922 Bytes
/
MessagePage.xaml
File metadata and controls
17 lines (16 loc) · 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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"
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
xmlns:local="clr-namespace:MauiSample"
xmlns:airship="clr-namespace:AirshipDotNet.MessageCenter.Controls;assembly=Airship.Net.MessageCenter"
x:Class="MauiSample.MessagePage"
Title="Message">
<airship:MessageView x:Name="messageView"
VerticalOptions="FillAndExpand"
HorizontalOptions="FillAndExpand"
LoadStarted="MessageView_LoadStarted"
LoadFailed="MessageView_LoadFailed"
LoadFinished="MessageView_LoadFinished"
Closed="MessageView_Closed"/>
</ContentPage>