MouseActionValueSerializer.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Core / CSharp / System / Windows / Input / Command / MouseActionValueSerializer.cs / 1 / MouseActionValueSerializer.cs

                            //---------------------------------------------------------------------------- 
//
// 
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
//
// Description: MouseActionConverter - Serializes a MouseAction 
// 
// History:
//  08/04/2005    : Chuck Jazdzewski - Created 
//
//---------------------------------------------------------------------------

using System; 
using System.ComponentModel;    // for TypeConverter
using System.Globalization;     // for CultureInfo 
using System.Reflection; 
using System.Windows;
using System.Windows.Markup; 
using System.Windows.Input;

namespace System.Windows.Input
{ 
    /// 
    /// MouseActionValueSerializer - Serializes a MouseAction 
    ///  
    public class MouseActionValueSerializer : ValueSerializer
    { 
        /// 
        /// CanConvertFromString()
        /// 
        ///  
        /// 
        ///  
        ///  
        public override bool CanConvertFromString(string value, IValueSerializerContext context)
        { 
            return true;
        }

        ///  
        /// CanConvertToString()
        ///  
        ///  
        /// 
        ///  
        /// 
        public override bool CanConvertToString(object value, IValueSerializerContext context)
        {
            return value is MouseAction && MouseActionConverter.IsDefinedMouseAction((MouseAction)value); 
        }
 
        ///  
        /// ConvertFromString()
        ///  
        /// 
        /// 
        /// 
        public override object ConvertFromString(string value, IValueSerializerContext context) 
        {
            TypeConverter converter = TypeDescriptor.GetConverter(typeof(MouseAction)); 
            if (converter != null) 
                return converter.ConvertFromString(value);
            else 
                return base.ConvertFromString(value, context);
        }

        ///  
        /// ConvertToString()
        ///  
        ///  
        /// 
        ///  
        public override string ConvertToString(object value, IValueSerializerContext context)
        {
            TypeConverter converter = TypeDescriptor.GetConverter(typeof(MouseAction));
            if (converter != null) 
                return converter.ConvertToInvariantString(value);
            else 
                return base.ConvertToString(value, context); 
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------------------------- 
//
// 
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
//
// Description: MouseActionConverter - Serializes a MouseAction 
// 
// History:
//  08/04/2005    : Chuck Jazdzewski - Created 
//
//---------------------------------------------------------------------------

using System; 
using System.ComponentModel;    // for TypeConverter
using System.Globalization;     // for CultureInfo 
using System.Reflection; 
using System.Windows;
using System.Windows.Markup; 
using System.Windows.Input;

namespace System.Windows.Input
{ 
    /// 
    /// MouseActionValueSerializer - Serializes a MouseAction 
    ///  
    public class MouseActionValueSerializer : ValueSerializer
    { 
        /// 
        /// CanConvertFromString()
        /// 
        ///  
        /// 
        ///  
        ///  
        public override bool CanConvertFromString(string value, IValueSerializerContext context)
        { 
            return true;
        }

        ///  
        /// CanConvertToString()
        ///  
        ///  
        /// 
        ///  
        /// 
        public override bool CanConvertToString(object value, IValueSerializerContext context)
        {
            return value is MouseAction && MouseActionConverter.IsDefinedMouseAction((MouseAction)value); 
        }
 
        ///  
        /// ConvertFromString()
        ///  
        /// 
        /// 
        /// 
        public override object ConvertFromString(string value, IValueSerializerContext context) 
        {
            TypeConverter converter = TypeDescriptor.GetConverter(typeof(MouseAction)); 
            if (converter != null) 
                return converter.ConvertFromString(value);
            else 
                return base.ConvertFromString(value, context);
        }

        ///  
        /// ConvertToString()
        ///  
        ///  
        /// 
        ///  
        public override string ConvertToString(object value, IValueSerializerContext context)
        {
            TypeConverter converter = TypeDescriptor.GetConverter(typeof(MouseAction));
            if (converter != null) 
                return converter.ConvertToInvariantString(value);
            else 
                return base.ConvertToString(value, context); 
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK