WPF アプリケーションでは、c# を使用して、ユーザーが自分のデータをグリッド ビューにインポートできるようにしたいと考えています。それで、ブラウズボタンか何かが必要ですか?
はいの場合、どうすればそれを行うことができますか?
WPF アプリケーションでは、c# を使用して、ユーザーが自分のデータをグリッド ビューにインポートできるようにしたいと考えています。それで、ブラウズボタンか何かが必要ですか?
はいの場合、どうすればそれを行うことができますか?
以下のコードは、参照ボタンを表示するのに役立ちます
<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;
}