Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / MultiTrigger.cs / 1305600 / MultiTrigger.cs
using System.Collections.Specialized; using System.ComponentModel; using System.IO; using System.Windows.Markup; using MS.Utility; using System; using System.Diagnostics; namespace System.Windows { ////// A multiple Style property conditional dependency driver /// [ContentProperty("Setters")] public sealed class MultiTrigger : TriggerBase, IAddChild { ////// Conditions collection /// [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] public ConditionCollection Conditions { get { // Verify Context Access VerifyAccess(); return _conditions; } } ////// Collection of Setter objects, which describes what to apply /// when this trigger is active. /// [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] public SetterBaseCollection Setters { get { // Verify Context Access VerifyAccess(); if( _setters == null ) { _setters = new SetterBaseCollection(); } return _setters; } } ////// This method is called to Add a Setter object as a child of the Style. /// /// /// The object to add as a child; it must be a Setter or subclass. /// void IAddChild.AddChild (Object value) { // Verify Context Access VerifyAccess(); Setters.Add(Trigger.CheckChildIsSetter(value)); } ////// This method is called by the parser when text appears under the tag in markup. /// As default Styles do not support text, calling this method has no effect. /// /// /// Text to add as a child. /// void IAddChild.AddText (string text) { // Verify Context Access VerifyAccess(); XamlSerializerUtil.ThrowIfNonWhiteSpaceInAddText(text, this); } internal override void Seal() { if (IsSealed) { return; } // Process the _setters collection: Copy values into PropertyValueList and seal the Setter objects. ProcessSettersCollection(_setters); if (_conditions.Count > 0) { // Seal conditions _conditions.Seal(ValueLookupType.Trigger); } // Build conditions array from collection TriggerConditions = new TriggerCondition[_conditions.Count]; for (int i = 0; i < TriggerConditions.Length; i++) { TriggerConditions[i] = new TriggerCondition( _conditions[i].Property, LogicalOp.Equals, _conditions[i].Value, (_conditions[i].SourceName != null) ? _conditions[i].SourceName : StyleHelper.SelfName); } // Set conditions array for all property triggers for (int i = 0; i < PropertyValues.Count; i++) { PropertyValue propertyValue = PropertyValues[i]; propertyValue.Conditions = TriggerConditions; // Put back modified struct PropertyValues[i] = propertyValue; } base.Seal(); } // evaluate the current state of the trigger internal override bool GetCurrentState(DependencyObject container, UncommonFielddataField) { bool retVal = (TriggerConditions.Length > 0); for( int i = 0; retVal && i < TriggerConditions.Length; i++ ) { Debug.Assert( TriggerConditions[i].SourceChildIndex == 0, "This method was created to handle properties on the containing object, more work is needed to handle templated children too." ); retVal = TriggerConditions[i].Match(container.GetValue(TriggerConditions[i].Property)); } return retVal; } private ConditionCollection _conditions = new ConditionCollection(); private SetterBaseCollection _setters = null; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System.Collections.Specialized; using System.ComponentModel; using System.IO; using System.Windows.Markup; using MS.Utility; using System; using System.Diagnostics; namespace System.Windows { /// /// A multiple Style property conditional dependency driver /// [ContentProperty("Setters")] public sealed class MultiTrigger : TriggerBase, IAddChild { ////// Conditions collection /// [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] public ConditionCollection Conditions { get { // Verify Context Access VerifyAccess(); return _conditions; } } ////// Collection of Setter objects, which describes what to apply /// when this trigger is active. /// [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] public SetterBaseCollection Setters { get { // Verify Context Access VerifyAccess(); if( _setters == null ) { _setters = new SetterBaseCollection(); } return _setters; } } ////// This method is called to Add a Setter object as a child of the Style. /// /// /// The object to add as a child; it must be a Setter or subclass. /// void IAddChild.AddChild (Object value) { // Verify Context Access VerifyAccess(); Setters.Add(Trigger.CheckChildIsSetter(value)); } ////// This method is called by the parser when text appears under the tag in markup. /// As default Styles do not support text, calling this method has no effect. /// /// /// Text to add as a child. /// void IAddChild.AddText (string text) { // Verify Context Access VerifyAccess(); XamlSerializerUtil.ThrowIfNonWhiteSpaceInAddText(text, this); } internal override void Seal() { if (IsSealed) { return; } // Process the _setters collection: Copy values into PropertyValueList and seal the Setter objects. ProcessSettersCollection(_setters); if (_conditions.Count > 0) { // Seal conditions _conditions.Seal(ValueLookupType.Trigger); } // Build conditions array from collection TriggerConditions = new TriggerCondition[_conditions.Count]; for (int i = 0; i < TriggerConditions.Length; i++) { TriggerConditions[i] = new TriggerCondition( _conditions[i].Property, LogicalOp.Equals, _conditions[i].Value, (_conditions[i].SourceName != null) ? _conditions[i].SourceName : StyleHelper.SelfName); } // Set conditions array for all property triggers for (int i = 0; i < PropertyValues.Count; i++) { PropertyValue propertyValue = PropertyValues[i]; propertyValue.Conditions = TriggerConditions; // Put back modified struct PropertyValues[i] = propertyValue; } base.Seal(); } // evaluate the current state of the trigger internal override bool GetCurrentState(DependencyObject container, UncommonFielddataField) { bool retVal = (TriggerConditions.Length > 0); for( int i = 0; retVal && i < TriggerConditions.Length; i++ ) { Debug.Assert( TriggerConditions[i].SourceChildIndex == 0, "This method was created to handle properties on the containing object, more work is needed to handle templated children too." ); retVal = TriggerConditions[i].Match(container.GetValue(TriggerConditions[i].Property)); } return retVal; } private ConditionCollection _conditions = new ConditionCollection(); private SetterBaseCollection _setters = null; } } // 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
- AsyncSerializedWorker.cs
- ImplicitInputBrush.cs
- ProtocolsSection.cs
- SwitchLevelAttribute.cs
- WebPartEditorOkVerb.cs
- sqlpipe.cs
- SqlGatherProducedAliases.cs
- ProviderBase.cs
- CharacterMetricsDictionary.cs
- ProxyGenerationError.cs
- XPathDocumentIterator.cs
- VideoDrawing.cs
- BufferModesCollection.cs
- AncestorChangedEventArgs.cs
- SecurityHeader.cs
- AttachmentCollection.cs
- COM2PropertyPageUITypeConverter.cs
- SimpleRecyclingCache.cs
- RightsManagementPermission.cs
- XmlDocumentFieldSchema.cs
- EntityTypeBase.cs
- RemotingException.cs
- Material.cs
- DragDrop.cs
- BinaryReader.cs
- HttpCapabilitiesEvaluator.cs
- PassportPrincipal.cs
- DbConnectionFactory.cs
- FontDriver.cs
- WindowsGraphicsCacheManager.cs
- ProfileSection.cs
- DataGridViewRowPostPaintEventArgs.cs
- XPathDocumentBuilder.cs
- ValidatorCompatibilityHelper.cs
- SqlMethodCallConverter.cs
- UnsafeNativeMethods.cs
- TreeNodeBindingCollection.cs
- FormViewPagerRow.cs
- Point4DConverter.cs
- StoreAnnotationsMap.cs
- DecoderFallback.cs
- HwndProxyElementProvider.cs
- FormClosingEvent.cs
- ColorBuilder.cs
- ProfileGroupSettingsCollection.cs
- DataGridViewCellPaintingEventArgs.cs
- EventDescriptor.cs
- SelectionItemProviderWrapper.cs
- WebBrowserHelper.cs
- CmsInterop.cs
- NonceToken.cs
- EdmToObjectNamespaceMap.cs
- MobileContainerDesigner.cs
- DataGridViewToolTip.cs
- XsltCompileContext.cs
- HierarchicalDataSourceControl.cs
- BatchParser.cs
- DataPagerFieldCommandEventArgs.cs
- Byte.cs
- RequestTimeoutManager.cs
- ModifierKeysValueSerializer.cs
- PasswordDeriveBytes.cs
- FilterQuery.cs
- MultipleViewPattern.cs
- TypeUsage.cs
- SafeLocalMemHandle.cs
- XmlQualifiedName.cs
- DependencyPropertyDescriptor.cs
- PrivacyNoticeBindingElementImporter.cs
- SafeFindHandle.cs
- InputLanguageManager.cs
- PeerContact.cs
- XmlSchemaComplexContent.cs
- NodeFunctions.cs
- MetadataImporter.cs
- ConfigurationValue.cs
- WindowsSolidBrush.cs
- JulianCalendar.cs
- AnnotationObservableCollection.cs
- ReflectionPermission.cs
- CanonicalXml.cs
- SQLMoney.cs
- Size.cs
- PhysicalFontFamily.cs
- SHA1CryptoServiceProvider.cs
- WebBrowserProgressChangedEventHandler.cs
- ScriptBehaviorDescriptor.cs
- filewebresponse.cs
- WindowsFormsLinkLabel.cs
- ScrollProviderWrapper.cs
- XmlEventCache.cs
- DataFormats.cs
- XmlSchemaSet.cs
- UseLicense.cs
- HeaderUtility.cs
- ClaimSet.cs
- HuffmanTree.cs
- MimeImporter.cs
- EntitySqlException.cs
- WmlCommandAdapter.cs