// // System.Windows.Forms.ListBindingConverter.cs // // Author: // stubbed out by Daniel Carrera (dcarrera@math.toronto.edu) // // (C) 2002 Ximian, Inc // using System.Globalization; using System.ComponentModel; using System.Collections; namespace System.Windows.Forms { // // This is only a template. Nothing is implemented yet. // // public class ListBindingConverter : TypeConverter { // // --- Constructor // [MonoTODO] public ListBindingConverter() { throw new NotImplementedException (); } // // --- Public Methods // // [MonoTODO] public bool CanConvertTo(Type t) { throw new NotImplementedException (); } [MonoTODO] public override bool CanConvertTo(ITypeDescriptorContext context, Type t) { throw new NotImplementedException (); } [MonoTODO] public object ConvertTo(object o, Type t) { throw new NotImplementedException (); } [MonoTODO] public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object o, Type t) { throw new NotImplementedException (); } [MonoTODO] public override object CreateInstance(ITypeDescriptorContext context, IDictionary dict) { throw new NotImplementedException (); } [MonoTODO] public bool GetCreateInstanceSupported() { throw new NotImplementedException (); } [MonoTODO] public override bool GetCreateInstanceSupported(ITypeDescriptorContext context) { throw new NotImplementedException (); } ////Inherited/not needed //public bool CanConvertFrom(Type t) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public virtual bool (ITypeDescriptorContext context, Type t) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public object ConvertFrom(object o) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public virtual object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object o) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public object ConvertFromInvariantString(string s) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public object ConvertFromInvariantString(ITypeDescriptorContext context, string s) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public object ConvertFromString(string s) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public object ConvertFromString(ITypeDescriptorContext context, string s) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public object ConvertFromString(ITypeDescriptorContext context, CultureInfo culture, string s) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public string ConvertToInvariantString(object o) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public string ConvertToInvariantString(ITypeDescriptorContext context, object o) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public string ConvertToString(object o) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public string ConvertToString(ITypeDescriptorContext context, object o) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public object CreateInstance(IDictionary dict) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public virtual bool Equals(object o); //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public static bool Equals(object o1, object o2); //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public virtual int GetHashCode() //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public PropertyDescriptorCollection GetProperties(object o) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public PropertyDescriptorCollection GetProperties(ITypeDescriptorContext context, object o) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public bool GetPropertiesObject() //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public virtual bool GetPropertiesObject(ITypeDescriptorContext context) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public ICollection GetStandardValues() //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public virtual StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public bool GetStandardValuesExclusive() //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public virtual bool GetStandardValuesExclusive(ITypeDescriptorContext context) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public bool GetStandardValuesSupported() //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public virtual bool GetStandardValuesSupported(ITypeDescriptorContext context) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public bool IsValid(object o) //{ // throw new NotImplementedException (); //} ////Inherited/not needed //public virtual bool IsValid(ITypeDescriptorContext context, object o) //{ // throw new NotImplementedException (); //} } }