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

FileNameEditor.cs « System.Windows.Forms.Design « System.Design « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 49a1f4b6699feb64d5d8b83587b96a99ac8abada (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//
// System.Windows.Forms.Design.ComponentEditorForm.cs
//
// Author:
//   Dennis Hayes (dennish@raytek.com)
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//
using System;
using System.ComponentModel;
using System.Drawing.Design;

namespace System.Windows.Forms.Design
{
	public class FileNameEditor : UITypeEditor
	{
		#region Public Instance Constructors

		public FileNameEditor ()
		{
		}

		#endregion Public Instance Constructors

		#region Override implementation of UITypeEditor

		[MonoTODO]
		public override object EditValue (ITypeDescriptorContext context, IServiceProvider provider, object value)
		{
			throw new NotImplementedException ();
		}

		public override UITypeEditorEditStyle GetEditStyle (ITypeDescriptorContext context)
		{
			return UITypeEditorEditStyle.Modal;
		}

		#endregion Override implementation of UITypeEditor

		#region Protected Instance Methods

		[MonoTODO]
		protected virtual void InitializeDialog (OpenFileDialog openFileDialog)
		{
			throw new NotImplementedException ();
		}

		#endregion Protected Instance Methods
	}
}