wpf 选择文件路径按钮
时间: 2023-09-06 13:07:45 浏览: 140
选择文件路径
4星 · 用户满意度95%
你可以使用 WPF 中的 OpenFileDialog 控件来选择文件路径。以下是一个简单的示例:
1. 在 XAML 文件中添加 OpenFileDialog 控件:
```
<Window x:Class="MyApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MyApp" Height="350" Width="525">
<Grid>
<Button Content="Select File" Click="SelectFile_Click"/>
</Grid>
</Window>
```
2. 在代码文件中添加 SelectFile_Click 方法:
```
private void SelectFile_Click(object sender, RoutedEventArgs e)
{
Microsoft.Win32.OpenFileDialog openFileDialog = new Microsoft.Win32.OpenFileDialog();
openFileDialog.Filter = "Text files (*.txt)|*.txt|All files (*.*)|*.*";
if (openFileDialog.ShowDialog() == true)
{
string selectedFilePath = openFileDialog.FileName;
// Do something with the selected file path
}
}
```
在上面的示例中,当用户单击 "Select File" 按钮时,将打开一个对话框,用户可以选择文件,然后将文件路径存储在 selectedFilePath 变量中。你可以根据需要自定义 OpenFileDialog 的过滤器。
阅读全文