Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / Tools / System.Activities.Presentation / System / Activities / Presentation / Base / Core / PropertyEditing / propertyentry.cs / 1305376 / propertyentry.cs
using System.Diagnostics.CodeAnalysis; namespace System.Activities.Presentation.PropertyEditing { using System.ComponentModel; using System.Collections; using System; using System.Diagnostics; using System.Activities.Presentation; ////// The PropertyEntry class provides additional, mostly type-specific data for a property. /// public abstract class PropertyEntry : INotifyPropertyChanged, IPropertyFilterTarget { private PropertyValue _parentValue; private bool _matchesFilter = true; private PropertyValue _value; ////// Creates a PropertyEntry. For host infrastructure derived classes. /// protected PropertyEntry() : this(null) { } ////// Creates a PropertyEntry that acts as a sub-property of the specified PropertyValue. /// For host infrastructure derived classes. /// /// The parent PropertyValue. /// Root properties do not have a parent PropertyValue. protected PropertyEntry(PropertyValue parentValue) { _parentValue = parentValue; } ////// Gets the name of the encapsulated property. /// public abstract string PropertyName { get; } ////// Gets the DisplayName for the property. By default, it is the /// PropertyName. /// public virtual string DisplayName { get { return this.PropertyName; } } ////// Gets the Type of the encapsulated property. /// public abstract Type PropertyType { get; } ////// Gets the name of the category that this property resides in. /// public abstract string CategoryName { get; } ////// Gets the description of the encapsulated property. /// public abstract string Description { get; } ////// Returns true if there are standard values for this property. /// The default implementation checks if the StandardValues property /// returns a non-null collection with a count > 0. /// protected virtual bool HasStandardValues { get { ICollection values = StandardValues; return values != null && values.Count > 0; } } ////// Accessor because we use this property in the property container. /// internal bool HasStandardValuesInternal { get { return HasStandardValues; } } ////// Gets the read-only attribute of the encapsulated property. /// public abstract bool IsReadOnly { get; } ////// Gets a flag indicating whether the encapsulated property is an advanced property. /// public abstract bool IsAdvanced { get; } ////// Gets any StandardValues that the encapsulated property supports. /// public abstract ICollection StandardValues { get; } ////// Gets to PropertyValueEditor to be used for editing of this PropertyEntry. /// May be null. PropertyContainer listens to changes made to this property. /// If the value changes, it's the responsibility of the deriving class to fire the /// appropriate PropertyChanged event. /// public abstract PropertyValueEditor PropertyValueEditor { get; } ////// Gets the parent PropertyValue. This is only used for sub-properties and, /// hence, its balue may be null. /// public PropertyValue ParentValue { get { return _parentValue; } } ////// Gets the PropertyValue (data model) for this PropertyEntry. /// public PropertyValue PropertyValue { get { if (_value == null) _value = CreatePropertyValueInstance(); return _value; } } ////// Used by the host infrastructure to create a new host-specific PropertyValue instance. /// ///new PropertyValue protected abstract PropertyValue CreatePropertyValueInstance(); // IPropertyFilterTarget Members ////// IPropertyFilterTarget event /// public event EventHandlerFilterApplied; /// /// IPropertyFilterTarget method. PropertyContainer listens to changes made to this property. /// public bool MatchesFilter { get { return _matchesFilter; } protected set { if (value != _matchesFilter) { _matchesFilter = value; OnPropertyChanged("MatchesFilter"); } } } ////// IPropertyFilterTarget method /// /// the predicate to match against ///true if there is a match public virtual bool MatchesPredicate(PropertyFilterPredicate predicate) { return predicate == null ? false : predicate.Match(this.DisplayName) || predicate.Match(this.PropertyType.Name); } ////// IPropertyFilterTarget method /// /// the PropertyFilter to apply public virtual void ApplyFilter(PropertyFilter filter) { this.MatchesFilter = filter == null ? true : filter.Match(this); OnFilterApplied(filter); } ////// Used to raise the IPropertyFilterTarget FilterApplied event /// /// protected virtual void OnFilterApplied(PropertyFilter filter) { if (FilterApplied != null) FilterApplied(this, new PropertyFilterAppliedEventArgs(filter)); } // INotifyPropertyChanged ////// INotifyPropertyChanged event /// public event PropertyChangedEventHandler PropertyChanged; ////// Used to raise the INotifyPropertyChanged PropertyChanged event /// /// EventArgs for this event protected virtual void OnPropertyChanged(PropertyChangedEventArgs e) { if (e == null) throw FxTrace.Exception.ArgumentNull("e"); if (this.PropertyChanged != null) this.PropertyChanged(this, e); } ////// Used to raise the INotifyPropertyChanged event /// /// ///When propertyName is null protected virtual void OnPropertyChanged(string propertyName) { if (propertyName == null) throw FxTrace.Exception.ArgumentNull("propertyName"); if (this.PropertyChanged != null) this.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
- SharedDp.cs
- StylusPointPropertyInfo.cs
- SharedHttpTransportManager.cs
- TitleStyle.cs
- ZipIOExtraField.cs
- BitmapScalingModeValidation.cs
- ChtmlCalendarAdapter.cs
- OdbcConnectionString.cs
- PerformanceCounter.cs
- Cursors.cs
- WebPartConnectionsConfigureVerb.cs
- GetPageCompletedEventArgs.cs
- SourceElementsCollection.cs
- CutCopyPasteHelper.cs
- RelatedImageListAttribute.cs
- GeneralTransform3DGroup.cs
- PathFigureCollectionConverter.cs
- CorrelationHandle.cs
- LayoutTable.cs
- HttpRawResponse.cs
- ServiceOperation.cs
- DefaultBindingPropertyAttribute.cs
- CodeGeneratorOptions.cs
- RangeValidator.cs
- RenderDataDrawingContext.cs
- Serializer.cs
- PrintingPermission.cs
- RadioButton.cs
- DataListItemEventArgs.cs
- TypeDescriptor.cs
- FtpWebRequest.cs
- FormsAuthentication.cs
- RadioButtonStandardAdapter.cs
- UTF32Encoding.cs
- BinaryKeyIdentifierClause.cs
- Matrix.cs
- MenuCommand.cs
- IntPtr.cs
- AutomationPatternInfo.cs
- MetadataPropertyAttribute.cs
- XmlDomTextWriter.cs
- XmlDictionaryString.cs
- EventLogEntryCollection.cs
- System.Data_BID.cs
- Literal.cs
- WindowsButton.cs
- TextEndOfParagraph.cs
- ThreadAttributes.cs
- SafeCancelMibChangeNotify.cs
- RelationshipSet.cs
- PersonalizationAdministration.cs
- DbProviderSpecificTypePropertyAttribute.cs
- UserMapPath.cs
- MimeWriter.cs
- SmtpSection.cs
- XmlSchemaElement.cs
- LoadMessageLogger.cs
- PageThemeBuildProvider.cs
- WebRequestModuleElementCollection.cs
- FormatVersion.cs
- BindingMAnagerBase.cs
- HtmlWindow.cs
- OracleRowUpdatingEventArgs.cs
- DataPagerFieldCollection.cs
- InheritanceContextChangedEventManager.cs
- TextContainerChangeEventArgs.cs
- ItemCollection.cs
- TokenCreationException.cs
- FindCompletedEventArgs.cs
- SqlDataSourceDesigner.cs
- IriParsingElement.cs
- FillBehavior.cs
- DataServiceSaveChangesEventArgs.cs
- SocketPermission.cs
- EntityDesignerDataSourceView.cs
- updatecommandorderer.cs
- DrawingImage.cs
- ProcessModelSection.cs
- LeaseManager.cs
- RawKeyboardInputReport.cs
- XmlSchemaInclude.cs
- FixedSOMPageElement.cs
- GradientSpreadMethodValidation.cs
- XPathDocumentNavigator.cs
- MbpInfo.cs
- Registry.cs
- WindowsListViewGroup.cs
- Highlights.cs
- XmlSignatureManifest.cs
- MessageParameterAttribute.cs
- Binding.cs
- VisualStyleTypesAndProperties.cs
- GenericParameterDataContract.cs
- ReadingWritingEntityEventArgs.cs
- EventLogWatcher.cs
- FtpRequestCacheValidator.cs
- FtpWebResponse.cs
- CompilerResults.cs
- SqlRewriteScalarSubqueries.cs
- TypeUtils.cs