web-dev-qa-db-ja.com

ファイルダイアログを開き、WPFコントロールとC#を使用してファイルを選択します。

私はtextbox1というTextBoxbutton1というButtonを持っています。 button1をクリックしたとき、私は自分のファイルをブラウズして画像ファイル(jpg、png、bmp ...とタイプする)だけを検索したいのです。画像ファイルを選択してファイルダイアログのOkをクリックすると、ファイルディレクトリはtextbox1.textのようになります。

textbox1.Text = "C:\myfolder\myimage.jpg"
168
NoobMaster69

そのようなものはあなたが必要とするものであるべきです

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;
    }
}
395
Klaus78
var ofd = new Microsoft.Win32.OpenFileDialog() {Filter = "JPEG Files (*.jpeg)|*.jpeg|PNG Files (*.png)|*.png|JPG Files (*.jpg)|*.jpg|GIF Files (*.gif)|*.gif"}; 
var result = ofd.ShowDialog();
if (result == false) return;
textBox1.Text = ofd.FileName;
21
Dave