csharp 从对话框#file #wpf中选择WPF中的文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 从对话框#file #wpf中选择WPF中的文件相关的知识,希望对你有一定的参考价值。
private void button1_Click(object sender, RoutedEventArgs e)
{
// Create OpenFileDialog
Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog();
// Set filter for file extension and default file extension
dlg.DefaultExt = ".png";
dlg.Filter = "JPEG Files (*.jpeg)|*.jpeg|PNG Files (*.png)|*.png|JPG Files (*.jpg)|*.jpg|GIF Files (*.gif)|*.gif";
// Display OpenFileDialog by calling ShowDialog method
Nullable<bool> result = dlg.ShowDialog();
// Get the selected file name and display in a TextBox
if (result == true)
{
// Open document
string filename = dlg.FileName;
textBox1.Text = filename;
}
}
以上是关于csharp 从对话框#file #wpf中选择WPF中的文件的主要内容,如果未能解决你的问题,请参考以下文章
C# WPF:把文件给我拖进来!!!
如何在VBS脚本中显示“选择文件对话框”或“选择目录对话框”
禁止“活动WPF”中的“背景”窗口
打开文件对话框并使用 WPF 控件和 C# 选择文件
WPF选择文件和文件夹对话框
用WPF 如何弹出文件选择对话框