11
ตั้งค่าตัวกรองเป็น OpenFileDialog เพื่ออนุญาตรูปแบบภาพทั่วไปหรือไม่
ฉันมีรหัสนี้ฉันจะอนุญาตให้ยอมรับรูปแบบภาพทั่วไปทั้งหมดได้อย่างไร PNG, JPEG, JPG, GIF? นี่คือสิ่งที่ฉันมี: public void EncryptFile() { OpenFileDialog dialog = new OpenFileDialog(); dialog.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*"; dialog.InitialDirectory = @"C:\"; dialog.Title = "Please select an image file to encrypt."; if (dialog.ShowDialog() == DialogResult.OK) { //Encrypt the selected file. I'll do this later. :) } } …
229
c#
winforms
openfiledialog