Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
複数選択が可能な openfiledialog を実装するにはどうすればよいですか? 追加のライブラリが必要ですか、それとも WPF-Control OpenFileDialog でも可能ですか?
MultiSelect である OpenFileDialog のプロパティがあると思います。
だからあなたはこれをするかもしれません。
OpenFileDialog dlg = 新しい OpenFileDialog(); dlg.MultiSelect = true; dlg.Show();