18 lines
387 B
C#
18 lines
387 B
C#
using System.Diagnostics;
|
|
|
|
namespace OpenLink
|
|
{
|
|
public partial class FormOpenUrl : Form
|
|
{
|
|
public FormOpenUrl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void buttonOpen_Click(object sender, EventArgs e)
|
|
{
|
|
Process.Start(new ProcessStartInfo(textBoxUrl.Text) { UseShellExecute = true });
|
|
}
|
|
}
|
|
}
|