「ヘルプ」コンテキストメニューがあるwinfromGUIがあります。クリックしたら、アプリケーションのユーザーマニュアルを開きたいのですが。マニュアルは、アプリケーションリソース内に保存されているPDFです。
質問:ユーザーのためにこれを開くにはどうすればよいですか?
使用しているコード
System.Diagnostics.Process process = new System.Diagnostics.Process();
bool adobeInstall = false;
RegistryKey adobe = Registry.LocalMachine.OpenSubKey("Software").OpenSubKey("Adobe");
if (adobe != null)
{
RegistryKey acroRead = adobe.OpenSubKey("Acrobat Reader");
if (acroRead != null)
adobeInstall = true;
}
if (adobeInstall == true)
{
///Open the pdf file??
}