各位好,我写了一个坐标系转换的小程序,想把他部署为可安装文件,但是,.chm的帮助文档老是不能一起打包?
我的帮助按钮式这样写的:不知道对不对
private void ToolStripMenuItemHelpTheme_Click(object sender, EventArgs e)
        {
            string helpfile = Application.StartupPath.Substring(0, Application.StartupPath.Substring(0, Application.StartupPath.LastIndexOf("\\")).LastIndexOf("\\"));
            helpfile += @"\Resources\HelpTheme.chm";
            Help.ShowHelp(this, helpfile);
            
        }我在网上看了一下解决方法,有的说把.chm添加到“文件系统”的“应用程序文件夹”然后在资源管理器里面修改属性,Content还有一个属性,但是我都没找到这两个属性啊!希望能得到帮助,谢谢!