デスクトップ アプリケーションにボタンを配置して、ユーザーの既定のブラウザを起動し、アプリケーションのロジックによって提供される URL を表示するにはどうすればよいですか。
質問する
47879 次
2 に答える
69
Process.Start("http://www.google.com");
于 2012-05-08T18:00:06.793 に答える
22
Process.Start([your url]) は、非常にニッチなケースを除いて、確かに答えです。ただし、完全を期すために、しばらく前にこのようなニッチなケースに遭遇したことを言及しておきます。「file:\」URL を開こうとしている場合 (この場合、ローカルにインストールされた Web ヘルプのコピーを表示するため)、シェルからの起動時に、URL へのパラメーターがスローされました。
「正しい」解決策で問題が発生しない限りお勧めしません。
ボタンのクリック ハンドラーで:
string browserPath = GetBrowserPath();
if (browserPath == string.Empty)
browserPath = "iexplore";
Process process = new Process();
process.StartInfo = new ProcessStartInfo(browserPath);
process.StartInfo.Arguments = "\"" + [whatever url you're trying to open] + "\"";
process.Start();
Process.Start([your url]) が期待どおりに動作しない場合を除き、使用しないでください。
private static string GetBrowserPath()
{
string browser = string.Empty;
RegistryKey key = null;
try
{
// try location of default browser path in XP
key = Registry.ClassesRoot.OpenSubKey(@"HTTP\shell\open\command", false);
// try location of default browser path in Vista
if (key == null)
{
key = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\Shell\Associations\UrlAssociations\http", false); ;
}
if (key != null)
{
//trim off quotes
browser = key.GetValue(null).ToString().ToLower().Replace("\"", "");
if (!browser.EndsWith("exe"))
{
//get rid of everything after the ".exe"
browser = browser.Substring(0, browser.LastIndexOf(".exe") + 4);
}
key.Close();
}
}
catch
{
return string.Empty;
}
return browser;
}
于 2012-05-08T18:33:01.433 に答える