- Fixed RadioButton display
[mono.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / ListViewItemConverter.cs
1 //
2 // System.Windows.Forms.ListViewItemConverter.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 namespace System.Windows.Forms {
14
15         // <summary>
16         // </summary>
17
18     public class ListViewItemConverter : ExpandableObjectConverter {
19                 //
20                 //  --- Constructor
21                 //
22                 [MonoTODO]
23                 public ListViewItemConverter()
24                 {
25                 }
26
27                 //
28                 //  --- Public Methods
29                 //
30
31                 public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
32                 {
33                         //FIXME:
34                         return base.CanConvertTo(context, destinationType);
35                 }
36                 public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
37                 {
38                         //FIXME:
39                         return base.ConvertTo(context, destinationType);
40                 }
41          }
42 }