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: 1b70163b824fbda6491505efd67338f1d635616f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// Author: John Luke  <jluke@cfl.rr.com>
// License: LGPL
//

using System;
using Gtk;

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