Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / Tools / System.Activities.Presentation / System / Activities / Presentation / View / TypeKeyValue.cs / 1305376 / TypeKeyValue.cs
namespace System.Activities.Presentation.View { using System; using System.Collections.ObjectModel; using System.ComponentModel; using System.Windows; using System.Windows.Automation.Peers; using System.Windows.Input; //helper class, used to resolve generics. supports cascading generic type arguments (i.e. IList< IList < int > >) internal class TypeKeyValue : INotifyPropertyChanged { string errorText; //generic type Type genericType; bool isValid = true; //generic's type generic parameters ObservableCollection < TypeKeyValue > subTypes = new ObservableCollection < TypeKeyValue >(); //target type Type targetType; //type resolver reference Action < TypeKeyValue > typeChangedCallBack; //if this type is selected bool isSelected; Funcfilter; ObservableCollection mostRecentlyUsedTypes; //if type presenter should skip the drop down list bool browseTypeDirectly = true; public TypeKeyValue(Type genericType, Action < TypeKeyValue > typeChangedCallBack) { this.GenericType = genericType; this.typeChangedCallBack = typeChangedCallBack; } public event PropertyChangedEventHandler PropertyChanged; public string ErrorText { get { return this.errorText; } set { this.errorText = value; OnPropertyChanged("ErrorText"); } } public Type GenericType { get { return this.genericType; } set { this.genericType = value; OnPropertyChanged("GenericType"); } } public bool IsSelected { get { return this.isSelected; } set { this.isSelected = value; OnPropertyChanged("IsSelected"); } } public Func Filter { get { return this.filter; } set { this.filter = value; OnPropertyChanged("Filter"); } } public ObservableCollection MostRecentlyUsedTypes { get { return this.mostRecentlyUsedTypes; } set { this.mostRecentlyUsedTypes = value; OnPropertyChanged("MostRecentlyUsedTypes"); } } public bool BrowseTypeDirectly { get { return this.browseTypeDirectly; } set { this.browseTypeDirectly = value; OnPropertyChanged("BrowseTypeDirectly"); } } public bool IsValid { get { return this.isValid; } set { this.isValid = value; OnPropertyChanged("IsValid"); } } public ObservableCollection < TypeKeyValue > SubTypes { get { return this.subTypes; } } public Type TargetType { get { return this.targetType; } set { this.targetType = value; //whenever target type changes, check if there are some generic parameters required LoadGenericTypes(); OnPropertyChanged("TargetType"); if (typeChangedCallBack != null) { typeChangedCallBack(this); } } } public Type GetConcreteType() { Type result = null; if (null != this.targetType) { //do we have generic? if (this.targetType.IsGenericTypeDefinition) { //resolve all generic arguments Type[] arguments = new Type[this.subTypes.Count]; bool isValid = true; for (int i = 0; i < this.subTypes.Count && isValid; ++i) { arguments[i] = this.subTypes[i].GetConcreteType(); isValid = (null != arguments[i]); } if (isValid) { //and create target type result = this.targetType.MakeGenericType(arguments); } } else { result = targetType; } } return result; } void LoadGenericTypes() { this.subTypes.Clear(); if (null != this.targetType && this.targetType.IsGenericTypeDefinition) { Type[] generics = this.targetType.GetGenericArguments(); foreach (Type t in generics) { TypeKeyValue entry = new TypeKeyValue(t, typeChangedCallBack); this.subTypes.Add(entry); typeChangedCallBack(entry); } } } void OnPropertyChanged(string propertyName) { if (null != PropertyChanged) { PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. namespace System.Activities.Presentation.View { using System; using System.Collections.ObjectModel; using System.ComponentModel; using System.Windows; using System.Windows.Automation.Peers; using System.Windows.Input; //helper class, used to resolve generics. supports cascading generic type arguments (i.e. IList< IList < int > >) internal class TypeKeyValue : INotifyPropertyChanged { string errorText; //generic type Type genericType; bool isValid = true; //generic's type generic parameters ObservableCollection < TypeKeyValue > subTypes = new ObservableCollection < TypeKeyValue >(); //target type Type targetType; //type resolver reference Action < TypeKeyValue > typeChangedCallBack; //if this type is selected bool isSelected; Func filter; ObservableCollection mostRecentlyUsedTypes; //if type presenter should skip the drop down list bool browseTypeDirectly = true; public TypeKeyValue(Type genericType, Action < TypeKeyValue > typeChangedCallBack) { this.GenericType = genericType; this.typeChangedCallBack = typeChangedCallBack; } public event PropertyChangedEventHandler PropertyChanged; public string ErrorText { get { return this.errorText; } set { this.errorText = value; OnPropertyChanged("ErrorText"); } } public Type GenericType { get { return this.genericType; } set { this.genericType = value; OnPropertyChanged("GenericType"); } } public bool IsSelected { get { return this.isSelected; } set { this.isSelected = value; OnPropertyChanged("IsSelected"); } } public Func Filter { get { return this.filter; } set { this.filter = value; OnPropertyChanged("Filter"); } } public ObservableCollection MostRecentlyUsedTypes { get { return this.mostRecentlyUsedTypes; } set { this.mostRecentlyUsedTypes = value; OnPropertyChanged("MostRecentlyUsedTypes"); } } public bool BrowseTypeDirectly { get { return this.browseTypeDirectly; } set { this.browseTypeDirectly = value; OnPropertyChanged("BrowseTypeDirectly"); } } public bool IsValid { get { return this.isValid; } set { this.isValid = value; OnPropertyChanged("IsValid"); } } public ObservableCollection < TypeKeyValue > SubTypes { get { return this.subTypes; } } public Type TargetType { get { return this.targetType; } set { this.targetType = value; //whenever target type changes, check if there are some generic parameters required LoadGenericTypes(); OnPropertyChanged("TargetType"); if (typeChangedCallBack != null) { typeChangedCallBack(this); } } } public Type GetConcreteType() { Type result = null; if (null != this.targetType) { //do we have generic? if (this.targetType.IsGenericTypeDefinition) { //resolve all generic arguments Type[] arguments = new Type[this.subTypes.Count]; bool isValid = true; for (int i = 0; i < this.subTypes.Count && isValid; ++i) { arguments[i] = this.subTypes[i].GetConcreteType(); isValid = (null != arguments[i]); } if (isValid) { //and create target type result = this.targetType.MakeGenericType(arguments); } } else { result = targetType; } } return result; } void LoadGenericTypes() { this.subTypes.Clear(); if (null != this.targetType && this.targetType.IsGenericTypeDefinition) { Type[] generics = this.targetType.GetGenericArguments(); foreach (Type t in generics) { TypeKeyValue entry = new TypeKeyValue(t, typeChangedCallBack); this.subTypes.Add(entry); typeChangedCallBack(entry); } } } void OnPropertyChanged(string propertyName) { if (null != PropertyChanged) { PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebPartDescriptionCollection.cs
- BindingCollection.cs
- BinaryCommonClasses.cs
- PreloadedPackages.cs
- JournalEntry.cs
- WeakHashtable.cs
- TypefaceMetricsCache.cs
- DialogResultConverter.cs
- KnowledgeBase.cs
- MultiSelector.cs
- URL.cs
- ErrorFormatter.cs
- IteratorDescriptor.cs
- DataSetUtil.cs
- DataList.cs
- mediaclock.cs
- StylusPointDescription.cs
- infer.cs
- AdornerDecorator.cs
- TextMarkerSource.cs
- SmtpMail.cs
- MsiStyleLogWriter.cs
- LazyTextWriterCreator.cs
- ButtonStandardAdapter.cs
- FileSystemEnumerable.cs
- QilName.cs
- XdrBuilder.cs
- BrowserCapabilitiesFactory.cs
- WindowsListViewItemCheckBox.cs
- Property.cs
- WorkflowMarkupElementEventArgs.cs
- UserControlCodeDomTreeGenerator.cs
- StringUtil.cs
- ZipIOBlockManager.cs
- TypeGeneratedEventArgs.cs
- ImportOptions.cs
- DiscreteKeyFrames.cs
- HotSpot.cs
- TraceHandlerErrorFormatter.cs
- InvokeGenerator.cs
- Graphics.cs
- InputMethodStateChangeEventArgs.cs
- DragDeltaEventArgs.cs
- TemplatingOptionsDialog.cs
- XmlSchemaRedefine.cs
- TraceHwndHost.cs
- AddInSegmentDirectoryNotFoundException.cs
- CodeTypeDelegate.cs
- DefaultTextStore.cs
- TreeBuilder.cs
- TreeSet.cs
- SystemIcmpV4Statistics.cs
- CommonDialog.cs
- AdPostCacheSubstitution.cs
- CatalogZoneAutoFormat.cs
- MessageBox.cs
- SimpleTypeResolver.cs
- SpecialFolderEnumConverter.cs
- XhtmlBasicLabelAdapter.cs
- CompositeControl.cs
- PhoneCallDesigner.cs
- xml.cs
- ZipIOExtraField.cs
- BinaryEditor.cs
- DetailsViewUpdateEventArgs.cs
- XmlEntity.cs
- GacUtil.cs
- CreateUserErrorEventArgs.cs
- GeometryModel3D.cs
- MailBnfHelper.cs
- PageCatalogPart.cs
- SettingsProperty.cs
- ComponentCollection.cs
- ExpanderAutomationPeer.cs
- OdbcConnection.cs
- TabControl.cs
- IconBitmapDecoder.cs
- ViewStateException.cs
- BatchParser.cs
- IdentifierCollection.cs
- StoreContentChangedEventArgs.cs
- UiaCoreTypesApi.cs
- XmlTextAttribute.cs
- ManifestSignatureInformation.cs
- XDeferredAxisSource.cs
- FileSystemInfo.cs
- BmpBitmapDecoder.cs
- CollectionDataContract.cs
- DynamicResourceExtensionConverter.cs
- ToolStripOverflowButton.cs
- DrawingDrawingContext.cs
- DefaultValueTypeConverter.cs
- dbenumerator.cs
- Globals.cs
- WebControlsSection.cs
- XPathExpr.cs
- LineBreak.cs
- RegexBoyerMoore.cs
- TextBoxBaseDesigner.cs
- AdvancedBindingEditor.cs