Initial Import
This commit is contained in:
17
FormOpenUrl.cs
Normal file
17
FormOpenUrl.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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 });
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user