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.
如何创建FileChooserButton仅显示.tar.gzMonoDevelop C# GTK+ 上的文件的文件?
FileChooserButton
.tar.gz
public MainWindow () : base(Gtk.WindowType.Toplevel) { Build (); FileFilter filter = new FileFilter(); filter.Name = "tar.gz files"; filter.AddPattern("*.tar.gz"); filechooserbutton1.AddFilter(filter); }