Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / Tools / System.Activities.Presentation / System / Activities / Presentation / Base / Interaction / Model / ModelItem.cs / 1305376 / ModelItem.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Activities.Presentation.Model { using System; using System.ComponentModel; using System.Diagnostics.CodeAnalysis; using System.Windows; using System.Collections.Generic; //// The ModelItem class represents a single item in the editing model. An // item can be anything from a Window or Control down to a color or integer. // // You may access the item�s properties through its Properties collection // and make changes to the values of the properties. // // A ModelItem is essentially a wrapper around the designer�s underlying // data model. You can access the underlying model through the // GetCurrentValue method. Note that you should never make any serializable // changes to an object returned from the GetCurrentValue method: it will // not be reflected back in the designer�s serialization or undo systems. // public abstract class ModelItem : INotifyPropertyChanged { //// Creates a new ModelItem. // protected ModelItem() { } //// Implements INotifyPropertyChanged. This can be used to tell when a property // on the model changes. It is also useful because INotifyPropertyChanged can // be used by the data binding features of WPF. // // You should take care to disconnect events from items when you are finished // when them. Otherwise you can prevent the item from garbage collecting. // public abstract event PropertyChangedEventHandler PropertyChanged; //// Returns the attributes declared on this item. // public abstract AttributeCollection Attributes { get; } //// If this item's ItemType declares a ContentPropertyAttribute, // that property will be exposed here. Otherwise, this will // return null. // public abstract ModelProperty Content { get; } //// Returns the type of object the item represents. // public abstract Type ItemType { get; } //// This property represents the name or ID of the item. Not // all items need to have names so this may return null. Also, // depending on the type of item and where it sits in the // hierarchy, it may not always be legal to set the name on // an item. If this item's ItemType declares a // RuntimeNamePropertyAttribute, this Name property will be // a direct mapping to the property dictated by that attribute. // public abstract string Name { get; set; } //// Returns the item that is the parent of this item. // If an item is contained in a collection or dictionary // the collection or dictionary is skipped, returning the // object owns the collection or dictionary. // public abstract ModelItem Parent { get; } //// Returns the al the parents of this item. // public abstract IEnumerableParents { get; } // // Returns the item that is the root of this tree. // If there is no root yet, as this isn't part of a tree // returns null. // public abstract ModelItem Root { get; } //// Returns the public properties on this object. The set of // properties returned may change based on attached // properties or changes to the editing scope. // public abstract ModelPropertyCollection Properties { get; } //// Returns the property that provided this value. If the item represents // the root of the object graph, this will return null. If an item is a // member of a collection or dictionary, the property returned from Source // will be a pseudo-property provided by the collection or dictionary. // For other values, the Source property returns the property where the // value was actually set. Therefore, if a value is being inherited, // Source allows you to find out who originally provided the value. // public abstract ModelProperty Source { get; } //// Returns all the properties that hold this value. // public abstract IEnumerableSources { get; } // // Returns the visual or visual3D representing the UI for this item. This // may return null if there is no view for this object. // public abstract DependencyObject View { get; } //// If you are doing multiple operations on an object or group of objects // you may call BeginEdit. Once an editing scope is open, all changes // across all objects will be saved into the scope. // // Editing scopes are global to the designer. An editing scope may be // created for any item in the designer; you do not need to create an // editing scope for the specific item you are changing. // // Editing scopes can be nested, but must be committed in order. // //// An editing scope that must be either completed or reverted. // public abstract ModelEditingScope BeginEdit(); //// If you are doing multiple operations on an object or group of objects // you may call BeginEdit. Once an editing scope is open, all changes // across all objects will be saved into the scope. // // Editing scopes are global to the designer. An editing scope may be // created for any item in the designer; you do not need to create an // editing scope for the specific item you are changing. // // Editing scopes can be nested, but must be committed in order. // // // An optional description that describes the change. This will be set // into the editing scope�s Description property. // //// An editing scope that must be either completed or reverted. // public abstract ModelEditingScope BeginEdit(string description); //// Returns the current value of the underlying model object the ModelItem // is wrapping. You can inspect this object, but you should not make any // changes to it. Changes made to the object returned will not be incorporated // into the designer. The GetCurrentValue method may return either an existing // or new cloned instance of the object. // //// Returns the current value of the underlying model object the ModelItem is wrapping. // public abstract object GetCurrentValue(); //// Returns string representation of the ModelItem which is the string representation // of underlying object the ModelItem is wrapping. // //// Returns string representation of the ModelItem. // public override string ToString() { object instance = this.GetCurrentValue(); if (instance != null) { return instance.ToString(); } else { return base.ToString(); } } } } // 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
- SemanticAnalyzer.cs
- M3DUtil.cs
- CleanUpVirtualizedItemEventArgs.cs
- GatewayIPAddressInformationCollection.cs
- ReachSerializationUtils.cs
- TrackingStringDictionary.cs
- RegexCompilationInfo.cs
- EllipseGeometry.cs
- ApplicationDirectory.cs
- AsyncOperation.cs
- Select.cs
- unitconverter.cs
- TableCell.cs
- AuthenticatingEventArgs.cs
- DesignerForm.cs
- WebFaultException.cs
- ToolStripPanelRow.cs
- WMIInterop.cs
- ColumnCollection.cs
- SoapCodeExporter.cs
- SocketPermission.cs
- NetworkAddressChange.cs
- QuotedPrintableStream.cs
- ScrollBarAutomationPeer.cs
- MeasureData.cs
- DataServiceSaveChangesEventArgs.cs
- ServiceMetadataBehavior.cs
- QueryStack.cs
- DataColumnPropertyDescriptor.cs
- EntityProxyFactory.cs
- COM2ICategorizePropertiesHandler.cs
- ToolStripDropDownItem.cs
- SqlTrackingWorkflowInstance.cs
- DataGridViewDataErrorEventArgs.cs
- EventTrigger.cs
- PipeStream.cs
- XmlSerializerVersionAttribute.cs
- ToolbarAUtomationPeer.cs
- ValueOfAction.cs
- ReaderContextStackData.cs
- ToolTipAutomationPeer.cs
- FlowNode.cs
- AccessControlEntry.cs
- Attachment.cs
- AutomationElementIdentifiers.cs
- RegionData.cs
- DateTimeOffsetStorage.cs
- TextFormatterContext.cs
- Msmq4SubqueuePoisonHandler.cs
- HtmlTextArea.cs
- MSAANativeProvider.cs
- Point.cs
- TdsParserSessionPool.cs
- FaultConverter.cs
- TypeSystem.cs
- InternalsVisibleToAttribute.cs
- AuthenticateEventArgs.cs
- TTSVoice.cs
- ObjectStorage.cs
- ModelEditingScope.cs
- EntitySqlQueryCacheEntry.cs
- PermissionToken.cs
- PropertyStore.cs
- ObjectListDataBindEventArgs.cs
- LinkButton.cs
- MultipartContentParser.cs
- PkcsUtils.cs
- RuntimeArgumentHandle.cs
- WebServiceErrorEvent.cs
- SendActivity.cs
- ToolboxComponentsCreatedEventArgs.cs
- _UriSyntax.cs
- FileDataSourceCache.cs
- XmlArrayAttribute.cs
- Soap12ServerProtocol.cs
- SecurityTokenException.cs
- TreeNodeEventArgs.cs
- ParseElementCollection.cs
- AmbientLight.cs
- SiteMapNodeCollection.cs
- CodeIndexerExpression.cs
- MatrixTransform.cs
- HostedNamedPipeTransportManager.cs
- DoubleConverter.cs
- SettingsProviderCollection.cs
- CapacityStreamGeometryContext.cs
- HMACSHA1.cs
- X509SecurityTokenAuthenticator.cs
- DelegateBodyWriter.cs
- WriterOutput.cs
- CqlParser.cs
- ItemMap.cs
- ByteStreamGeometryContext.cs
- FixedSOMLineCollection.cs
- FileFormatException.cs
- RadioButtonAutomationPeer.cs
- SocketElement.cs
- WebPartDescription.cs
- TypeSemantics.cs
- OleDbStruct.cs