private void simpleButtonSelectPath_Click(object sender, EventArgs e)
{
    FolderBrowserDialog fbd = new FolderBrowserDialog();
    fbd.SelectedPath = "D:"; //默认路径
    if (fbd.ShowDialog() == DialogResult.OK)
    {
        textEditVoiceFilePath.Text = fbd.SelectedPath;

    }
}

 

相关文章:

  • 2021-09-07
  • 2021-11-28
  • 2021-10-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-05-23
  • 2022-12-23
  • 2021-05-18
相关资源
相似解决方案