Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / Tools / System.Activities.Core.Presentation / System / Activities / Core / Presentation / FlowDecisionDesigner.xaml.cs / 1305376 / FlowDecisionDesigner.xaml.cs
//---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------- namespace System.Activities.Core.Presentation { using System.Activities.Presentation; using System.Activities.Presentation.Metadata; using System.Activities.Presentation.View; using System.Activities.Statements; using System.ComponentModel; using System.Windows; using System.Windows.Automation.Peers; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Media; partial class FlowDecisionDesigner { public static readonly DependencyProperty ExpressionButtonVisibilityProperty = DependencyProperty.Register("ExpressionButtonVisibility", typeof(Visibility), typeof(FlowDecisionDesigner)); public static readonly DependencyProperty ExpressionButtonColorProperty = DependencyProperty.Register("ExpressionButtonColor", typeof(Brush), typeof(FlowDecisionDesigner)); static readonly DependencyProperty ShowAllConditionsProperty = DependencyProperty.Register("ShowAllConditions", typeof(bool), typeof(FlowDecisionDesigner), new UIPropertyMetadata(new PropertyChangedCallback(OnShowAllConditionsChanged))); bool isPinned; bool expressionShown = false; public FlowDecisionDesigner() { InitializeComponent(); this.Loaded += (sender, e) => { //UnRegistering because of 137896: Inside tab control multiple Loaded events happen without an Unloaded event. this.ModelItem.PropertyChanged -= OnModelItemPropertyChanged; this.ModelItem.PropertyChanged += OnModelItemPropertyChanged; OnModelItemPropertyChanged(this.ModelItem, new PropertyChangedEventArgs("Condition")); SetupBinding(); }; this.Unloaded += (sender, e) => { this.ModelItem.PropertyChanged -= OnModelItemPropertyChanged; }; this.MouseEnter += (sender, e) => { Update(); }; this.MouseLeave += (sender, e) => { Update(); }; } void SetupBinding() { Binding showAllConditionsBinding = new Binding(); showAllConditionsBinding.RelativeSource = new RelativeSource(RelativeSourceMode.FindAncestor, typeof(FlowchartDesigner), 1); showAllConditionsBinding.Path = new PropertyPath(FlowchartDesigner.ShowAllConditionsProperty); showAllConditionsBinding.Mode = BindingMode.OneWay; BindingOperations.SetBinding(this, FlowDecisionDesigner.ShowAllConditionsProperty, showAllConditionsBinding); } public Visibility ExpressionButtonVisibility { get { return (Visibility)GetValue(ExpressionButtonVisibilityProperty); } set { SetValue(ExpressionButtonVisibilityProperty, value); } } public Brush ExpressionButtonColor { get { return (Brush)GetValue(ExpressionButtonColorProperty); } set { SetValue(ExpressionButtonColorProperty, value); } } public bool ExpressionShown { get { return this.expressionShown; } } public static void RegisterMetadata(AttributeTableBuilder builder) { Type type = typeof(FlowDecision); builder.AddCustomAttributes(type, new DesignerAttribute(typeof(FlowDecisionDesigner))); builder.AddCustomAttributes(type, type.GetProperty("True"), BrowsableAttribute.No); builder.AddCustomAttributes(type, type.GetProperty("False"), BrowsableAttribute.No); builder.AddCustomAttributes(type, new ActivityDesignerOptionsAttribute { AllowDrillIn = false }); builder.AddCustomAttributes(type, new FeatureAttribute(typeof(FlowDecisionLabelFeature))); } protected override AutomationPeer OnCreateAutomationPeer() { return new FlowchartExpressionAutomationPeer(this, base.OnCreateAutomationPeer()); } void OnExpressionButtonClicked(object sender, RoutedEventArgs e) { this.isPinned = !this.isPinned; Update(); } void OnModelItemPropertyChanged(object sender, PropertyChangedEventArgs e) { if (e.PropertyName == "Condition") { Update(); } } void Update() { Activity expressionActivity = this.ModelItem.Properties["Condition"].ComputedValue as Activity; string expressionString = ExpressionHelper.GetExpressionString(expressionActivity, this.ModelItem); bool expressionSpecified = !string.IsNullOrEmpty(expressionString); if (!expressionSpecified) { this.isPinned = false; } this.ExpressionButtonVisibility = expressionSpecified ? Visibility.Visible : Visibility.Collapsed; if (this.isPinned) { this.ExpressionButtonColor = WorkflowDesignerColors.FlowchartExpressionButtonPressedBrush; } else if (this.IsMouseOver) { this.ExpressionButtonColor = WorkflowDesignerColors.FlowchartExpressionButtonMouseOverBrush; } else { this.ExpressionButtonColor = WorkflowDesignerColors.FlowchartExpressionButtonBrush; } expressionShown = false; AdornerLayer adornerLayer = AdornerLayer.GetAdornerLayer(this); if (adornerLayer != null) { Adorner[] adorners = adornerLayer.GetAdorners(this); if (adorners != null) { foreach (Adorner adorner in adorners) { if (adorner is FlowchartExpressionAdorner) { adornerLayer.Remove(adorner); } } } if ((this.IsMouseOver && expressionSpecified) || this.isPinned) { expressionShown = true; adornerLayer.Add(new FlowchartExpressionAdorner(this)); } } } static void OnShowAllConditionsChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e) { if (e.NewValue != DependencyProperty.UnsetValue) { FlowDecisionDesigner designer = obj as FlowDecisionDesigner; designer.OnShowAllConditionsChanged((bool)e.NewValue); } } void OnShowAllConditionsChanged(bool isOpen) { this.isPinned = isOpen; Update(); } } } // 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
- ArrayWithOffset.cs
- SimpleType.cs
- ClaimComparer.cs
- Opcode.cs
- PropertyEmitterBase.cs
- LogLogRecordHeader.cs
- GridViewRowEventArgs.cs
- MenuItemStyleCollection.cs
- TextPenaltyModule.cs
- ListControlBoundActionList.cs
- BitmapCacheBrush.cs
- GetUserPreferenceRequest.cs
- SystemWebCachingSectionGroup.cs
- ApplicationBuildProvider.cs
- HttpConfigurationContext.cs
- Point3DCollectionConverter.cs
- _NetworkingPerfCounters.cs
- AnnotationStore.cs
- XPathArrayIterator.cs
- TextBoxBase.cs
- CodeMemberEvent.cs
- CompiledQuery.cs
- ObjectSet.cs
- tibetanshape.cs
- SessionParameter.cs
- SQLBinaryStorage.cs
- ZipIORawDataFileBlock.cs
- DataDocumentXPathNavigator.cs
- ConnectionStringsSection.cs
- SqlNodeAnnotation.cs
- ManagementOperationWatcher.cs
- Annotation.cs
- AsyncOperation.cs
- DummyDataSource.cs
- ResourcesBuildProvider.cs
- RepeaterItemCollection.cs
- CodeParameterDeclarationExpressionCollection.cs
- ToolStripItemRenderEventArgs.cs
- TextElement.cs
- WebPartEditorOkVerb.cs
- ServiceModelTimeSpanValidator.cs
- ReflectionTypeLoadException.cs
- PersonalizationProviderCollection.cs
- SmtpSection.cs
- MatrixStack.cs
- WindowsListViewSubItem.cs
- _NativeSSPI.cs
- ClientSettingsSection.cs
- DataMemberAttribute.cs
- OletxVolatileEnlistment.cs
- CompilerParameters.cs
- DrawListViewItemEventArgs.cs
- DispatcherBuilder.cs
- StringConverter.cs
- ModelChangedEventArgsImpl.cs
- NodeFunctions.cs
- BaseConfigurationRecord.cs
- EntityDescriptor.cs
- ApplicationSecurityInfo.cs
- PartialCachingControl.cs
- CryptoConfig.cs
- ByteStreamGeometryContext.cs
- FlowDocumentPage.cs
- DbDataSourceEnumerator.cs
- Int32CollectionValueSerializer.cs
- XsdCachingReader.cs
- XmlSchema.cs
- DesignerAttribute.cs
- QfeChecker.cs
- ZoneLinkButton.cs
- RowBinding.cs
- Triplet.cs
- LocalizationComments.cs
- GradientBrush.cs
- CreateUserWizardAutoFormat.cs
- HttpHandlerActionCollection.cs
- _HeaderInfoTable.cs
- SqlProfileProvider.cs
- HtmlTableCellCollection.cs
- SymbolType.cs
- DataGridViewTextBoxEditingControl.cs
- MachineKeySection.cs
- WindowsAuthenticationModule.cs
- ProfileManager.cs
- Stacktrace.cs
- FileAccessException.cs
- ResourcesGenerator.cs
- BaseValidator.cs
- HtmlAnchor.cs
- BasicHttpMessageSecurityElement.cs
- DataErrorValidationRule.cs
- ResourcePermissionBase.cs
- Messages.cs
- CultureTableRecord.cs
- OutOfMemoryException.cs
- Grid.cs
- DataGridTable.cs
- PanelStyle.cs
- Command.cs
- ColorIndependentAnimationStorage.cs