Exemple #1
0
        public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
        {
            if (value is not MatrixTransform mt)
            {
                throw new NotSupportedException();
            }
            var converter = new MatrixTypeConverter();

            return(converter.ConvertToInvariantString(mt.Matrix));
        }
        public override string ConvertToInvariantString(object value)
        {
            if (!(value is MatrixTransform mt))
            {
                throw new NotSupportedException();
            }
            var converter = new MatrixTypeConverter();

            return(converter.ConvertToInvariantString(mt.Matrix));
        }