我在 Resources 中添加了 help.txt 文件作为文本文件,并且这样做了:
private void helpButton_Click(object sender, MouseEventArgs e)
{
System.Diagnostics.Process.Start(myProject.Properties.Resources.help);
}
它没有用,然后我尝试了这种方式:
private void helpButton_Click(object sender, MouseEventArgs e)
{
System.Diagnostics.Process.Start(@"help.txt");
}
它也不起作用,但是这样起作用:
private void helpButton_Click(object sender, MouseEventArgs e)
{
System.Diagnostics.Process.Start(@"C:\Projects\CourceWork\Resources\help.txt");
}
问题是我不想处理这个硬核定义的路径,我该怎么办?