mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-19 09:01:32 -07:00
19 lines
433 B
C#
19 lines
433 B
C#
using System.Windows.Input;
|
|
using CommunityToolkit.Mvvm.Input;
|
|
|
|
namespace Bloxstrap.UI.ViewModels
|
|
{
|
|
public static class GlobalViewModel
|
|
{
|
|
public static ICommand OpenWebpageCommand => new RelayCommand<string>(OpenWebpage);
|
|
|
|
private static void OpenWebpage(string? location)
|
|
{
|
|
if (location is null)
|
|
return;
|
|
|
|
Utilities.ShellExecute(location);
|
|
}
|
|
}
|
|
}
|