Files
Needlework.Net/Needlework.Net/ViewModels/Pages/HomeViewModel.cs
2024-10-28 15:33:21 -05:00

20 lines
455 B
C#

using CommunityToolkit.Mvvm.Input;
using System.Diagnostics;
namespace Needlework.Net.ViewModels.Pages;
public partial class HomeViewModel : PageBase
{
public HomeViewModel() : base("Home", "home", int.MinValue) { }
[RelayCommand]
private void OpenUrl(string url)
{
var process = new Process()
{
StartInfo = new ProcessStartInfo(url) { UseShellExecute = true }
};
process.Start();
}
}