198

TextBox名前付きtextbox1Button名前付きがありbutton1ます。をクリックするbutton1と、ファイルを参照して画像ファイル (タイプ jpg、png、bmp...) のみを検索します。そして、画像ファイルを選択してファイルダイアログで[OK]をクリックすると、ファイルディレクトリが次のように書き込まれますtextbox1.text

textbox1.Text = "C:\myfolder\myimage.jpg"
4

2 に答える 2

454

そのようなものはあなたが必要とするものでなければなりません

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;
    }
}
于 2012-04-25T12:08:57.880 に答える