2
0
Files

26 lines
597 B
C#
Raw Permalink Normal View History

2026-01-11 12:33:48 -05:00
// AboutPage - Information about OpenMaui Linux
using Microsoft.Maui.Controls;
namespace ShellDemo;
public partial class AboutPage : ContentPage
{
public AboutPage()
{
InitializeComponent();
}
2026-01-24 03:17:48 +00:00
private async void OnWebsiteLinkTapped(object? sender, TappedEventArgs e)
{
try
{
await Microsoft.Maui.Platform.Linux.Services.Browser.OpenAsync("https://www.openmaui.net", BrowserLaunchMode.SystemPreferred);
}
catch (Exception ex)
{
Console.WriteLine($"Failed to open URL: {ex.Message}");
}
}
2026-01-11 12:33:48 -05:00
}