Pregunta

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.

¿Fue útil?

Solución 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

Otros consejos

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top