■ はじめに
* 以下を行いたい。
~~~~~
【1】自作Windowsアプリからブラウザを起動するには
【2】ブラウザから自作Windowsアプリを起動するには
~~~~~
今回は、「【1】自作Windowsアプリからブラウザを起動するには」を行う。
■ 自作Windowsアプリからブラウザを起動するには
* 『System.Diagnostics.Process.Start("【URL】")』を実行する
■ サンプル
using System;
using System.Diagnostics;
using System.Windows.Forms;
namespace SampleForm
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
Process.Start("https://blogs.yahoo.co.jp/dk521123/37951845.html");
}
}
}