2
A
回答
12
下面的代碼可以幫助你顯示瀏覽按鈕
<TextBox Height="32" HorizontalAlignment="Left" Margin="6,10,0,0" Name="FileNameTextBox"
VerticalAlignment="Top" Width="393" />
<Button Content="Browse" Height="32" HorizontalAlignment="Left" Margin="405,10,0,0"
Name="button1" VerticalAlignment="Top" Width="88" Click="button1_Click" />
// Create OpenFileDialog
Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog();
// Set filter for file extension and default file extension
dlg.DefaultExt = ".txt";
dlg.Filter = "Text documents (.txt)|*.txt";
// 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;
FileNameTextBox.Text = filename;
}
+0
感謝它的工作!但我怎樣才能使選定的文件的數據導入到我自己的WPF – hslldm
相關問題
- 1. WPF/C#瀏覽器youtube
- 2. WPF瀏覽
- 3. C#WPF,如何在文件瀏覽器
- 4. WPF瀏覽器InvokeScript
- 5. 圖像瀏覽器在WPF
- 6. 在Web瀏覽器中運行WPF瀏覽器應用程序
- 7. 使用Facebook錯誤使用WPF Web瀏覽器的C#sdk
- 8. WPF使用MVVM模式瀏覽視圖
- 9. WPF在瀏覽器和打印中
- 10. WPF Web瀏覽器替代
- 11. WPF WebBrowser瀏覽器版本
- 12. 在wpf網絡瀏覽器控件中瀏覽安全網頁
- 13. WPF應用程序和WPF瀏覽器應用程序
- 14. 在wpf中使用默認瀏覽器發佈
- 15. 如何在WPF中使用WebKit瀏覽器控件
- 16. 需要幫助獲取favicon在瀏覽器中工作C#WPF
- 17. 如何在鉻瀏覽器中添加mousDown事件c#wpf
- 18. MVVM VS WPF瀏覽器應用程序?
- 19. 瀏覽wpf中的頁面不工作
- 20. 瀏覽器中的主機WPF窗口
- 21. 循環瀏覽WPF/Powershell中的控件
- 22. Web瀏覽器控件在WPF
- 23. 滾動瀏覽器在WPF的DataGrid
- 24. 用於在WPF中託管的CefSharp Wpf瀏覽器的UI自動化usercontrol
- 25. 從瀏覽器提供WPF瀏覽器應用程序?
- 26. 在C#中使用C++ dll(WPF)
- 27. WPF用戶控件庫WPF瀏覽器應用程序中的XAML錯誤
- 28. 當我使用WPF瀏覽器控件時,如何使用BeforeNavigate2?
- 29. WPF,C#使用VS2010
- 30. UpdateSourceTrigger使用C#WPF
檢查這個答案:http://stackoverflow.com/a/10315283/161222 – Radi
Ohhhhmmmm ......我的玻璃球說它已經壞了。用戶能從哪裏導入數據?從文件,剪貼板...你是什麼意思_browse button_? – DHN
你試圖導入什麼類型的文件?您需要解析數據以填充數據網格,數據網格中沒有神奇的導入功能,您需要自己實現它。瀏覽按鈕是簡單的部分。 –