d0eb731f4ea4fa2fe75d93b24653bd8bfe2687f7
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / ListBindingConverter.cs
1 //
2 // System.Windows.Forms.ListBindingConverter.cs
3 //
4 // Author:
5 //   stubbed out by Daniel Carrera (dcarrera@math.toronto.edu)
6 //   Dennis Hayes (dennish@Raytek.com)
7 //
8 // (C) 2002/3 Ximian, Inc
9 //
10 using System.Globalization;
11 using System.ComponentModel;
12 using System.Collections;
13
14 namespace System.Windows.Forms {
15
16         // <summary>
17         // </summary>
18     public class ListBindingConverter : TypeConverter {
19
20                 //
21                 //  --- Constructor
22                 //
23                 [MonoTODO]
24                 public ListBindingConverter()
25                 {
26                         
27                 }
28
29                 //
30                 //  --- Public Methods
31                 //
32                 //
33                 
34                 [MonoTODO]
35                 public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) 
36                 {
37                         //FIXME:
38                         return base.CanConvertTo(context, destinationType);
39                 }
40
41                 [MonoTODO]
42                 public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) 
43                 {
44                         //FIXME:
45                         return base.ConvertTo(context, culture, value, destinationType);
46                 }
47                 [MonoTODO]
48                 public override object CreateInstance(ITypeDescriptorContext context, IDictionary propertyValues) 
49                 {
50                         //FIXME:
51                         return base.CreateInstance(context, propertyValues);;
52                 }
53
54                 [MonoTODO]
55                 public override bool GetCreateInstanceSupported(ITypeDescriptorContext context) 
56                 {
57                         //FIXME:
58                         return base.GetCreateInstanceSupported(context);
59                 }
60          }
61 }