Microsoft.Win32.OpenFileDialog openFileDialog1 = new Microsoft.Win32.OpenFileDialog();
            openFileDialog1.Filter = "(*.cup)|*.cup";
            if (openFileDialog1.ShowDialog() == true)
            {
                    MessageBox.Show(openFileDialog1.FileName);
            }





相关文章:

  • 2021-05-18
  • 2022-12-23
  • 2021-08-13
  • 2022-12-23
  • 2021-08-15
  • 2021-10-08
  • 2021-12-03
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-30
  • 2022-12-23
  • 2021-05-28
相关资源
相似解决方案