Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FolderDialog.cs « MonoDevelop.Components « MonoDevelop.Ide « core « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d9c25d6c34601d5a5de874a6e1452ee8abdf0362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// Author: John Luke  <jluke@cfl.rr.com>
// License: LGPL
//

using System;

namespace MonoDevelop.Components
{
	class FolderDialog : FileSelector
	{
		public FolderDialog (string title) : base (title, Gtk.FileChooserAction.SelectFolder)
		{
			this.SelectMultiple = false;
		}
	}
}