I've seen everyone recomending the following:
private void RegisterBtn(object sender, RoutedEventArgs e)
{
System.Diagnostics.Process.Start("https://website.com/");
}
But I get the following error:
"The system cannot find the file specified." System.ComponentModel.Win32Exception"
I want for the button to open a window in the default browser.
Ps: It's a WPF desktop App coded in C#