public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return new MemberSelector
     {
         MemberName = (string)value,
     };
 }
Example #2
0
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return(new MemberSelector
     {
         MemberName = (string)value,
     });
 }
 public object ConvertTo(
     ITypeConverterContext context,
     CultureInfo culture,
     object value,
     Type destinationType)
 {
    throw new NotImplementedException();
 }        
        public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
        {
            if (value is string)
            {
                return value;
            }

            return null;
        }
        public bool CanConvertTo(ITypeConverterContext context, Type destinationType)
        {
            if (destinationType == typeof(string) || destinationType == typeof(int))
            {
                return true;
            }

            return false;
        }
        public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
        {
            var valueStr = (string)value;
            if (!valueStr.Contains(":"))
            {
                // shorthand seconds format (ie. "0.25")
                var secs = double.Parse(valueStr, CultureInfo.InvariantCulture);
                return TimeSpan.FromSeconds(secs);
            }

            return TimeSpan.Parse(valueStr);
        }
Example #7
0
        public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
        {
            var valueStr = (string)value;

            if (!valueStr.Contains(":"))
            {
                // shorthand seconds format (ie. "0.25")
                var secs = double.Parse(valueStr, CultureInfo.InvariantCulture);
                return(TimeSpan.FromSeconds(secs));
            }

            return(TimeSpan.Parse(valueStr));
        }
        public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
        {
            string strValue = (string)value;

            string[] pointStrs = strValue.Split(new[] { ' ', '\t', '\r', '\n' }, StringSplitOptions.RemoveEmptyEntries);
            var      result    = new List <Point>(pointStrs.Length);

            foreach (var pointStr in pointStrs)
            {
                result.Add(Point.Parse(pointStr, culture));
            }
            return(result);
        }
Example #9
0
        public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
        {
            var uri = new Uri((string)value, UriKind.RelativeOrAbsolute);
            var scheme = uri.IsAbsoluteUri ? uri.Scheme : "file";

            switch (scheme)
            {
                case "file":
                    return new Bitmap((string)value);
                default:
                    var assets = PerspexLocator.Current.GetService<IAssetLoader>();
                    return new Bitmap(assets.Open(uri));
            }
        }
Example #10
0
        public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
        {
            var uri    = new Uri((string)value, UriKind.RelativeOrAbsolute);
            var scheme = uri.IsAbsoluteUri ? uri.Scheme : "file";

            switch (scheme)
            {
            case "file":
                return(new Bitmap((string)value));

            default:
                var assets = PerspexLocator.Current.GetService <IAssetLoader>();
                return(new Bitmap(assets.Open(uri)));
            }
        }
        public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
        {
            var s = (string)value;

            string typeName;
            string propertyName;
            Type type;

            ParseProperty(s, out typeName, out propertyName);

            if (typeName == null)
            {
                var styleType = context.TypeRepository.GetByType(typeof(Style));
                var style = (Style)context.TopDownValueContext.GetLastInstance(styleType);
                type = style.Selector.TargetType;

                if (type == null)
                {
                    throw new ParseException(
                        "Could not determine the target type. Please fully qualify the property name.");
                }
            }
            else
            {
                type = context.TypeRepository.GetByQualifiedName(typeName)?.UnderlyingType;

                if (type == null)
                {
                    throw new ParseException($"Could not find type '{typeName}'.");
                }
            }

            // First look for non-attached property on the type and then look for an attached property.
            var property = PerspexPropertyRegistry.Instance.FindRegistered(type, s) ??
                           PerspexPropertyRegistry.Instance.GetAttached(type)
                           .FirstOrDefault(x => x.Name == propertyName);

            if (property == null)
            {
                throw new ParseException(
                    $"Could not find PerspexProperty '{type.Name}.{propertyName}'.");
            }

            return property;
        }
Example #12
0
        public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
        {
            var s = (string)value;

            string typeName;
            string propertyName;
            Type   type;

            ParseProperty(s, out typeName, out propertyName);

            if (typeName == null)
            {
                var styleType = context.TypeRepository.GetByType(typeof(Style));
                var style     = (Style)context.TopDownValueContext.GetLastInstance(styleType);
                type = style.Selector.TargetType;

                if (type == null)
                {
                    throw new ParseException(
                              "Could not determine the target type. Please fully qualify the property name.");
                }
            }
            else
            {
                type = context.TypeRepository.GetByQualifiedName(typeName)?.UnderlyingType;

                if (type == null)
                {
                    throw new ParseException($"Could not find type '{typeName}'.");
                }
            }

            // First look for non-attached property on the type and then look for an attached property.
            var property = PerspexPropertyRegistry.Instance.FindRegistered(type, s) ??
                           PerspexPropertyRegistry.Instance.GetAttached(type)
                           .FirstOrDefault(x => x.Name == propertyName);

            if (property == null)
            {
                throw new ParseException(
                          $"Could not find PerspexProperty '{type.Name}.{propertyName}'.");
            }

            return(property);
        }
        public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
        {
            var result = new PerspexList <T>();
            var values = ((string)value).Split(',');

            foreach (var s in values)
            {
                object v;

                if (TypeUtilities.TryConvert(typeof(T), s, culture, out v))
                {
                    result.Add((T)v);
                }
                else
                {
                    throw new InvalidCastException($"Could not convert '{s}' to {typeof(T)}.");
                }
            }

            return(result);
        }
Example #14
0
        public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
        {
            var str = value as string;

            if (value is int)
            {
                return Convert.ToInt32(value, CultureInfo.InvariantCulture);
            }
            if (value is long)
            {
                return Convert.ToInt32(value, CultureInfo.InvariantCulture);
            }
            else if (str != null)
            {
                long v;
                if (long.TryParse(str, NumberStyles.Integer, CultureInfo.InvariantCulture, out v))
                {
                    return (int)v;
                }
            }

            throw new InvalidOperationException();
        }
        public object ConvertTo(ITypeConverterContext context, CultureInfo culture, object value, Type destinationType)
        {
            if (value == null)
            {
                return null;
            }

            if (destinationType == typeof(int))
            {
                var str = value as string;
                if (str != null)
                {
                    int n;
                    if (int.TryParse(str, NumberStyles.Integer, CultureInfo.InvariantCulture, out n))
                    {
                        return n;
                    }
                    return null;
                }
            }

            if (destinationType == typeof(double))
            {
                var str = value as string;
                if (str != null)
                {
                    double n;
                    if (double.TryParse(str, NumberStyles.Float | NumberStyles.AllowThousands, CultureInfo.InvariantCulture, out n))
                    {
                        return n;
                    }
                    return null;
                }
            }

            return value.ToString();
        }
Example #16
0
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return StreamGeometry.Parse((string)value);
 }
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return double.Parse((string) value, CultureInfo.InvariantCulture);
 }
Example #18
0
 public bool CanConvertFrom(ITypeConverterContext context, Type sourceType)
 {
     return converter.CanConvertFrom(null, sourceType);
 }
Example #19
0
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return new Classes(((string)value).Split(' '));
 }
Example #20
0
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return(KeyGesture.Parse((string)value));
 }
        public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
        {
            var cursor = (StandardCursorType)Enum.Parse(typeof(StandardCursorType), ((string)value).Trim(), true);

            return(new Cursor(cursor));
        }
Example #22
0
 public object ConvertTo(ITypeConverterContext context, CultureInfo culture, object value, Type destinationType)
 {
     throw new NotImplementedException();
 }
Example #23
0
 public object ConvertTo(ITypeConverterContext context, CultureInfo culture, object value, Type destinationType)
 {
     return converter.ConvertTo(null, culture, value, destinationType);
 }
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return(StreamGeometry.Parse((string)value));
 }
 public bool CanConvertFrom(ITypeConverterContext context, Type sourceType)
 {
     return sourceType == typeof(int) || sourceType == typeof(double) || sourceType == typeof(float);
 }
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return(RelativeRect.Parse((string)value, culture));
 }
Example #27
0
 public bool CanConvertTo(ITypeConverterContext context, Type destinationType)
 {
     return true;
 }
Example #28
0
 public bool CanConvertTo(ITypeConverterContext context, Type destinationType)
 {
     return converter.CanConvertTo(null, destinationType);
 }
Example #29
0
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     var qualifiedTypeName = value as string;
     return context.TypeRepository.GetByQualifiedName(qualifiedTypeName).UnderlyingType;            
 }
Example #30
0
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return(new Classes(((string)value).Split(' ')));
 }
Example #31
0
        public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
        {
            var parser = new SelectorParser((t, ns) => context.TypeRepository.GetByPrefix(ns ?? "", t).UnderlyingType);

            return(parser.Parse((string)value));
        }
Example #32
0
 public bool CanConvertTo(ITypeConverterContext context, Type destinationType)
 {
     return(false);
 }
Example #33
0
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     ITypeDescriptorContext typeDescriptor = new TypeDescriptorContext();
     return converter.ConvertFrom(typeDescriptor, culture, value);
 }
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return GridLength.Parse((string)value, culture);
 }
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return new ColumnDefinitions((string)value);
 }
Example #36
0
 public bool CanConvertFrom(ITypeConverterContext context, Type sourceType)
 {
     return(sourceType == typeof(string));
 }
Example #37
0
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return(new ColumnDefinitions((string)value));
 }
Example #38
0
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return(new Uri((string)value));
 }
Example #39
0
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     var cursor = (StandardCursorType)Enum.Parse(typeof (StandardCursorType), ((string) value).Trim(), true);
     return new Cursor(cursor);
 }
Example #40
0
 public object ConvertTo(ITypeConverterContext context, CultureInfo culture, object value, Type destinationType)
 {
     return value.ToString();
 }
Example #41
0
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     var parser = new SelectorParser((t, ns) => context.TypeRepository.GetByPrefix(ns ?? "", t).UnderlyingType);
     return parser.Parse((string)value);
 }
Example #42
0
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return bool.Parse((string) value);
 }
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return RelativePoint.Parse((string)value, culture);
 }
Example #44
0
 public bool CanConvertTo(ITypeConverterContext context, Type destinationType)
 {
     return destinationType == typeof(string);
 }
Example #45
0
 public object ConvertFrom(ITypeConverterContext context, CultureInfo culture, object value)
 {
     return(GridLength.Parse((string)value, culture));
 }
Example #46
0
 public bool CanConvertFrom(ITypeConverterContext context, Type sourceType)
 {
     return sourceType == typeof(string);
 }
 /// <summary>
 ///   Constructor
 /// </summary>
 /// <param name="configurationCollection">Configuration store</param>
 /// <param name="context">Current type converter context</param>
 public DefaultConverter(ConfigurationCollection configurationCollection, ITypeConverterContext context)
 {
     m_configurationCollection = configurationCollection;
     m_context = context;
 }