Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / WinForms / Managed / System / WinForms / CursorConverter.cs / 1 / CursorConverter.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
*/
namespace System.Windows.Forms {
using System.Diagnostics;
using Microsoft.Win32;
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design.Serialization;
using System.Globalization;
using System.Reflection;
using System.IO;
///
///
/// CursorConverter is a class that can be used to convert
/// colors from one data type to another. Access this
/// class through the TypeDescriptor.
///
public class CursorConverter : TypeConverter {
private StandardValuesCollection values;
///
///
/// Determines if this converter can convert an object in the given source
/// type to the native type of the converter.
///
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) {
if (sourceType == typeof(string) || sourceType == typeof(byte[])) {
return true;
}
return base.CanConvertFrom(context, sourceType);
}
///
///
/// Gets a value indicating whether this converter can
/// convert an object to the given destination type using the context.
///
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) {
if (destinationType == typeof(InstanceDescriptor) || destinationType == typeof(byte[])) {
return true;
}
return base.CanConvertTo(context, destinationType);
}
///
///
/// Converts the given object to the converter's native type.
///
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) {
if (value is string) {
string text = ((string)value).Trim();
PropertyInfo[] props = GetProperties();
for (int i = 0; i < props.Length; i++) {
PropertyInfo prop = props[i];
if (string.Equals(prop.Name, text, StringComparison.OrdinalIgnoreCase) ){
object[] tempIndex = null;
return prop.GetValue(null, tempIndex);
}
}
}
if (value is byte[]) {
MemoryStream ms = new MemoryStream((byte[])value);
return new Cursor(ms);
}
return base.ConvertFrom(context, culture, value);
}
///
///
/// Converts the given object to another type. The most common types to convert
/// are to and from a string object. The default implementation will make a call
/// to ToString on the object if the object is valid and if the destination
/// type is string. If this cannot convert to the desitnation type, this will
/// throw a NotSupportedException.
///
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) {
if (destinationType == null) {
throw new ArgumentNullException("destinationType");
}
if (destinationType == typeof(string) && value != null) {
PropertyInfo[] props = GetProperties();
int bestMatch = -1;
for (int i = 0; i < props.Length; i++) {
PropertyInfo prop = props[i];
object[] tempIndex = null;
Cursor c = (Cursor)prop.GetValue(null, tempIndex);
if (c == (Cursor)value) {
if (Object.ReferenceEquals(c, value)) {
return prop.Name;
}
else {
bestMatch = i;
}
}
}
if (bestMatch != -1) {
return props[bestMatch].Name;
}
// We throw here because we cannot meaningfully convert a custom
// cursor into a string. In fact, the ResXResourceWriter will use
// this exception to indicate to itself that this object should
// be serialized through ISeriazable instead of a string.
//
throw new FormatException(SR.GetString(SR.CursorCannotCovertToString));
}
if (destinationType == typeof(InstanceDescriptor) && value is Cursor) {
PropertyInfo[] props = GetProperties();
foreach(PropertyInfo prop in props) {
if (prop.GetValue(null, null) == value) {
return new InstanceDescriptor(prop, null);
}
}
}
if (destinationType == typeof(byte[])) {
if (value != null) {
MemoryStream ms = new MemoryStream();
Cursor cursor = (Cursor)value;
cursor.SavePicture(ms);
ms.Close();
return ms.ToArray();
}
else
return new byte[0];
}
return base.ConvertTo(context, culture, value, destinationType);
}
///
///
/// Retrieves the properties for the available cursors.
///
private PropertyInfo[] GetProperties() {
return typeof(Cursors).GetProperties(BindingFlags.Static | BindingFlags.Public);
}
///
///
/// Retrieves a collection containing a set of standard values
/// for the data type this validator is designed for. This
/// will return null if the data type does not support a
/// standard set of values.
///
public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) {
if (values == null) {
ArrayList list = new ArrayList();
PropertyInfo[] props = GetProperties();
for (int i = 0; i < props.Length; i++) {
PropertyInfo prop = props[i];
object[] tempIndex = null;
Debug.Assert(prop.GetValue(null, tempIndex) != null, "Property " + prop.Name + " returned NULL");
list.Add(prop.GetValue(null, tempIndex));
}
values = new StandardValuesCollection(list.ToArray());
}
return values;
}
///
///
/// Determines if this object supports a standard set of values
/// that can be picked from a list.
///
public override bool GetStandardValuesSupported(ITypeDescriptorContext context) {
return true;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
*/
namespace System.Windows.Forms {
using System.Diagnostics;
using Microsoft.Win32;
using System.Collections;
using System.ComponentModel;
using System.ComponentModel.Design.Serialization;
using System.Globalization;
using System.Reflection;
using System.IO;
///
///
/// CursorConverter is a class that can be used to convert
/// colors from one data type to another. Access this
/// class through the TypeDescriptor.
///
public class CursorConverter : TypeConverter {
private StandardValuesCollection values;
///
///
/// Determines if this converter can convert an object in the given source
/// type to the native type of the converter.
///
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) {
if (sourceType == typeof(string) || sourceType == typeof(byte[])) {
return true;
}
return base.CanConvertFrom(context, sourceType);
}
///
///
/// Gets a value indicating whether this converter can
/// convert an object to the given destination type using the context.
///
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) {
if (destinationType == typeof(InstanceDescriptor) || destinationType == typeof(byte[])) {
return true;
}
return base.CanConvertTo(context, destinationType);
}
///
///
/// Converts the given object to the converter's native type.
///
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) {
if (value is string) {
string text = ((string)value).Trim();
PropertyInfo[] props = GetProperties();
for (int i = 0; i < props.Length; i++) {
PropertyInfo prop = props[i];
if (string.Equals(prop.Name, text, StringComparison.OrdinalIgnoreCase) ){
object[] tempIndex = null;
return prop.GetValue(null, tempIndex);
}
}
}
if (value is byte[]) {
MemoryStream ms = new MemoryStream((byte[])value);
return new Cursor(ms);
}
return base.ConvertFrom(context, culture, value);
}
///
///
/// Converts the given object to another type. The most common types to convert
/// are to and from a string object. The default implementation will make a call
/// to ToString on the object if the object is valid and if the destination
/// type is string. If this cannot convert to the desitnation type, this will
/// throw a NotSupportedException.
///
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) {
if (destinationType == null) {
throw new ArgumentNullException("destinationType");
}
if (destinationType == typeof(string) && value != null) {
PropertyInfo[] props = GetProperties();
int bestMatch = -1;
for (int i = 0; i < props.Length; i++) {
PropertyInfo prop = props[i];
object[] tempIndex = null;
Cursor c = (Cursor)prop.GetValue(null, tempIndex);
if (c == (Cursor)value) {
if (Object.ReferenceEquals(c, value)) {
return prop.Name;
}
else {
bestMatch = i;
}
}
}
if (bestMatch != -1) {
return props[bestMatch].Name;
}
// We throw here because we cannot meaningfully convert a custom
// cursor into a string. In fact, the ResXResourceWriter will use
// this exception to indicate to itself that this object should
// be serialized through ISeriazable instead of a string.
//
throw new FormatException(SR.GetString(SR.CursorCannotCovertToString));
}
if (destinationType == typeof(InstanceDescriptor) && value is Cursor) {
PropertyInfo[] props = GetProperties();
foreach(PropertyInfo prop in props) {
if (prop.GetValue(null, null) == value) {
return new InstanceDescriptor(prop, null);
}
}
}
if (destinationType == typeof(byte[])) {
if (value != null) {
MemoryStream ms = new MemoryStream();
Cursor cursor = (Cursor)value;
cursor.SavePicture(ms);
ms.Close();
return ms.ToArray();
}
else
return new byte[0];
}
return base.ConvertTo(context, culture, value, destinationType);
}
///
///
/// Retrieves the properties for the available cursors.
///
private PropertyInfo[] GetProperties() {
return typeof(Cursors).GetProperties(BindingFlags.Static | BindingFlags.Public);
}
///
///
/// Retrieves a collection containing a set of standard values
/// for the data type this validator is designed for. This
/// will return null if the data type does not support a
/// standard set of values.
///
public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) {
if (values == null) {
ArrayList list = new ArrayList();
PropertyInfo[] props = GetProperties();
for (int i = 0; i < props.Length; i++) {
PropertyInfo prop = props[i];
object[] tempIndex = null;
Debug.Assert(prop.GetValue(null, tempIndex) != null, "Property " + prop.Name + " returned NULL");
list.Add(prop.GetValue(null, tempIndex));
}
values = new StandardValuesCollection(list.ToArray());
}
return values;
}
///
///
/// Determines if this object supports a standard set of values
/// that can be picked from a list.
///
public override bool GetStandardValuesSupported(ITypeDescriptorContext context) {
return true;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MulticastNotSupportedException.cs
- DateTimeOffsetStorage.cs
- LongSumAggregationOperator.cs
- RequestCacheManager.cs
- HtmlCalendarAdapter.cs
- PrimarySelectionGlyph.cs
- RegionIterator.cs
- RotateTransform3D.cs
- SystemIcmpV4Statistics.cs
- RelationshipEndCollection.cs
- SerializerWriterEventHandlers.cs
- TextElementAutomationPeer.cs
- Sql8ExpressionRewriter.cs
- Ray3DHitTestResult.cs
- MissingSatelliteAssemblyException.cs
- Journal.cs
- GroupByExpressionRewriter.cs
- XmlNodeReader.cs
- complextypematerializer.cs
- WebRequestModuleElement.cs
- Missing.cs
- PassportIdentity.cs
- ReadOnlyDictionary.cs
- HashCodeCombiner.cs
- ProtectedProviderSettings.cs
- ResXResourceSet.cs
- SqlBuilder.cs
- SimpleBitVector32.cs
- GeometryModel3D.cs
- DbDataRecord.cs
- DataTableReaderListener.cs
- NamedPipeTransportSecurity.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- StatusBarItem.cs
- UdpDiscoveryEndpointElement.cs
- SerializableAttribute.cs
- PolyLineSegment.cs
- HwndKeyboardInputProvider.cs
- SignalGate.cs
- ManagementEventArgs.cs
- UpdateProgress.cs
- Transform3DCollection.cs
- ListBox.cs
- BufferedReceiveManager.cs
- DataQuery.cs
- InputScope.cs
- RectKeyFrameCollection.cs
- XmlNamespaceMapping.cs
- TreeNodeCollection.cs
- ValidationVisibilityAttribute.cs
- TypeContext.cs
- ShortcutKeysEditor.cs
- CodeCommentStatementCollection.cs
- SqlServices.cs
- NamedPipeAppDomainProtocolHandler.cs
- TextEvent.cs
- NullableDecimalSumAggregationOperator.cs
- ReverseQueryOperator.cs
- ProxyWebPartConnectionCollection.cs
- MetricEntry.cs
- SerialPort.cs
- SchemaCollectionCompiler.cs
- WebServiceHostFactory.cs
- ScriptReferenceEventArgs.cs
- PenThread.cs
- Codec.cs
- PopupControlService.cs
- HttpVersion.cs
- HttpResponse.cs
- DataGridViewTextBoxCell.cs
- CommandValueSerializer.cs
- ExpandSegmentCollection.cs
- AsyncResult.cs
- AlignmentYValidation.cs
- FixUpCollection.cs
- IconHelper.cs
- TimeoutException.cs
- AddDataControlFieldDialog.cs
- MarkupProperty.cs
- FacetChecker.cs
- PingReply.cs
- Processor.cs
- regiisutil.cs
- MultiSelectRootGridEntry.cs
- WCFBuildProvider.cs
- HealthMonitoringSectionHelper.cs
- MultipartIdentifier.cs
- Compiler.cs
- RectangleHotSpot.cs
- XmlSignatureManifest.cs
- ElementNotAvailableException.cs
- RelationshipManager.cs
- Vector.cs
- WebPartConnectionsEventArgs.cs
- _FtpControlStream.cs
- RelativeSource.cs
- MeshGeometry3D.cs
- DataGridViewHitTestInfo.cs
- HttpException.cs
- ImageButton.cs