如何在函数buttonCreate_Click中使用函数菜单项



我对C#相对较新。我的问题是:我创建了一个菜单条。我想在目录路径下创建一个文件夹ButtonCreate_Click。那么如何使用函数按钮中的路径创建呢?这可能吗?

    private void buttonCreate_Click(object sender, EventArgs e)
    {
        string MyFileName = "Car.txt";
        string newPath1 = Path.Combine(patheto, MyFileName);
        //Create a folder in the active Directory
        Directory.CreateDirectory(newPath1);
    }
    private void DirectoryPathToolStripMenuItem_Click(object sender, EventArgs e)
    {
        string patheto = @"C:temp";
        Process.Start(patheto);
    }

因为您在菜单项单击事件中声明 patheto,所以它只是该范围的局部变量。如果为窗体创建属性,则可以在窗体范围内使用该属性。像这样:

private string patheto = @"C:temp";
private void buttonCreate_Click(object sender, EventArgs e)
{
    string MyFileName = "Car.txt";
    string newPath1 = Path.Combine(patheto, MyFileName);
    // Create a folder in the active Directory
    Directory.CreateDirectory(newPath1);
}
private void DirectoryPathToolStripMenuItem_Click(object sender, EventArgs e)
{
    Process.Start(patheto);
}

这意味着可以在表单中的任何位置访问变量路径。你必须记住的是,无论你在哪里声明你的变量,它们只能在该函数/类或子函数/方法中访问。

相关内容

  • 没有找到相关文章

最新更新