Code:
/ 4.0 / 4.0 / 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. 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
- DataGridBoundColumn.cs
- CalendarBlackoutDatesCollection.cs
- URLAttribute.cs
- ListItemParagraph.cs
- XmlTypeAttribute.cs
- LoadWorkflowAsyncResult.cs
- ConnectionManagementElement.cs
- ArcSegment.cs
- ClaimSet.cs
- SqlCacheDependencySection.cs
- HandlerFactoryCache.cs
- WebPartCloseVerb.cs
- UriExt.cs
- TextEndOfSegment.cs
- ProfileInfo.cs
- WindowsPrincipal.cs
- CharStorage.cs
- SurrogateDataContract.cs
- ProtectedConfigurationSection.cs
- PageAsyncTask.cs
- AmbientLight.cs
- DataGridViewRowConverter.cs
- KeyPullup.cs
- EntityDataSourceWizardForm.cs
- returneventsaver.cs
- WebPartsPersonalizationAuthorization.cs
- MethodBuilder.cs
- InputProcessorProfiles.cs
- BinaryFormatter.cs
- GenericEnumerator.cs
- XmlIlTypeHelper.cs
- ProfileEventArgs.cs
- ComponentResourceKey.cs
- _TransmitFileOverlappedAsyncResult.cs
- PaintValueEventArgs.cs
- Subtree.cs
- DateTimeValueSerializer.cs
- DbProviderFactoriesConfigurationHandler.cs
- Graphics.cs
- IntSecurity.cs
- CancelEventArgs.cs
- SystemIPv4InterfaceProperties.cs
- GorillaCodec.cs
- LabelLiteral.cs
- RelativeSource.cs
- CollectionBuilder.cs
- EventMappingSettings.cs
- LeafCellTreeNode.cs
- DataServiceQueryProvider.cs
- XmlElementAttributes.cs
- ModelFactory.cs
- SpellerStatusTable.cs
- XsltException.cs
- FormsAuthenticationCredentials.cs
- ContentTypeSettingDispatchMessageFormatter.cs
- HijriCalendar.cs
- StringFunctions.cs
- XamlParser.cs
- TemplateComponentConnector.cs
- IgnoreFileBuildProvider.cs
- CreateUserWizard.cs
- XmlAnyElementAttribute.cs
- MobileControlsSectionHandler.cs
- SelectedDatesCollection.cs
- ChannelSinkStacks.cs
- D3DImage.cs
- IndexerNameAttribute.cs
- CheckBoxAutomationPeer.cs
- DashStyles.cs
- TextEditorContextMenu.cs
- NumberEdit.cs
- ClientOptions.cs
- BuildProvider.cs
- _UncName.cs
- DurableOperationAttribute.cs
- TcpServerChannel.cs
- PreloadHost.cs
- DashStyle.cs
- TableCellCollection.cs
- DuplicateMessageDetector.cs
- DataGridViewAutoSizeColumnModeEventArgs.cs
- EventLogPermission.cs
- StrokeRenderer.cs
- MainMenu.cs
- ComponentDispatcher.cs
- FixedDSBuilder.cs
- PeerNearMe.cs
- _ProxyChain.cs
- PhysicalAddress.cs
- ClickablePoint.cs
- HttpInputStream.cs
- DataGridViewCellStateChangedEventArgs.cs
- SQLGuid.cs
- formatstringdialog.cs
- InstanceNameConverter.cs
- SimpleType.cs
- Parameter.cs
- SspiSecurityToken.cs
- ValidationErrorEventArgs.cs
- MsmqTransportSecurityElement.cs