* System.Windows.Forms.Design/FileNameEditor.cs: code formatting
[mono.git] / mcs / class / System.Design / System.Windows.Forms.Design / FileNameEditor.cs
1 //
2 // System.Windows.Forms.Design.ComponentEditorForm.cs
3 //
4 // Author:
5 //   Dennis Hayes (dennish@raytek.com)
6 // (C) 2002 Ximian, Inc.  http://www.ximian.com
7 //
8 using System;
9 using System.ComponentModel;
10 using System.Drawing.Design;
11
12 namespace System.Windows.Forms.Design
13 {
14         public class FileNameEditor : UITypeEditor
15         {
16                 #region Public Instance Constructors
17
18                 public FileNameEditor ()
19                 {
20                 }
21
22                 #endregion Public Instance Constructors
23
24                 #region Override implementation of UITypeEditor
25
26                 [MonoTODO]
27                 public override object EditValue (ITypeDescriptorContext context, IServiceProvider provider, object value)
28                 {
29                         throw new NotImplementedException ();
30                 }
31
32                 public override UITypeEditorEditStyle GetEditStyle (ITypeDescriptorContext context)
33                 {
34                         return UITypeEditorEditStyle.Modal;
35                 }
36
37                 #endregion Override implementation of UITypeEditor
38
39                 #region Protected Instance Methods
40
41                 [MonoTODO]
42                 protected virtual void InitializeDialog (OpenFileDialog openFileDialog)
43                 {
44                         throw new NotImplementedException ();
45                 }
46
47                 #endregion Protected Instance Methods
48         }
49 }