Here I am trying to run .chm file when help is requested either using F1 key using Form1_HelpRequested(object sender, HelpEventArgs hlpevent) Why Help.ShowHelp(chmFileName); not working in mono on linux ? Where as it works good on visual studio, windows. Please help me to execute help on mono.

有帮助吗?

解决方案 2

private void ShowHelpForLinux()
{
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
startInfo.FileName = "chmsee";
startInfo.Arguments = " " + help.chm + "::" + @"rootname//destination.htm";
Process.Start(startInfo);
}

For mono c# help, this code will work.

By Samdoss

其他提示

Maybe the relevant API calls aren't implemented on Linux.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top