MouseGestureConverter::ConvertFrom Method (ITypeDescriptorContext^, CultureInfo^, Object^)

 

Attempts to convert the specified object to a MouseGesture, using the specified context.

Namespace:   System.Windows.Input
Assembly:  PresentationCore (in PresentationCore.dll)

public:
virtual Object^ ConvertFrom(
	ITypeDescriptorContext^ context,
	CultureInfo^ culture,
	Object^ source
) override

Parameters

context
Type: System.ComponentModel::ITypeDescriptorContext^

A format context that provides information about the environment from which this converter is being invoked.

culture
Type: System.Globalization::CultureInfo^

Culture specific information.

source
Type: System::Object^

The object to convert.

Return Value

Type: System::Object^

The converted object.

Exception Condition
NotSupportedException

source cannot be converter.

The MouseGestureConverter converts to and from a String using the "+" key as the delimiter between the modifier keys and the mouse action. For example, the string Control+RightClick would be converted into a MouseGesture with a Modifiers property equal to Control and MouseAction property equal to RightClick.

.NET Framework
Available since 3.0
Return to top
Show: