Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / Tools / System.Activities.Presentation / System / Activities / Presentation / WorkflowElementDialog.cs / 1407647 / WorkflowElementDialog.cs
//---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------- namespace System.Activities.Presentation { using System.Windows; using System.Windows.Controls; using System.Activities.Presentation.Model; using System.Activities.Presentation.Hosting; using System.Runtime; [Fx.Tag.XamlVisible(false)] public class WorkflowElementDialog : ContentControl { public static readonly DependencyProperty ModelItemProperty = DependencyProperty.Register("ModelItem", typeof(ModelItem), typeof(WorkflowElementDialog), new PropertyMetadata(OnModelItemChanged)); public static readonly DependencyProperty TitleProperty = DependencyProperty.Register("Title", typeof(string), typeof(WorkflowElementDialog)); public static readonly DependencyProperty ContextProperty = DependencyProperty.Register("Context", typeof(EditingContext), typeof(WorkflowElementDialog)); public static readonly DependencyProperty WindowResizeModeProperty = DependencyProperty.Register("WindowResizeMode", typeof(ResizeMode), typeof(WorkflowElementDialog), new UIPropertyMetadata(ResizeMode.CanResize)); public static readonly DependencyProperty WindowSizeToContentProperty = DependencyProperty.Register("WindowSizeToContent", typeof(SizeToContent), typeof(WorkflowElementDialog), new UIPropertyMetadata(SizeToContent.WidthAndHeight)); protected WorkflowElementDialog() { } public ModelItem ModelItem { get { return (ModelItem)GetValue(ModelItemProperty); } set { SetValue(ModelItemProperty, value); } } public string Title { get { return (string)GetValue(TitleProperty); } set { SetValue(TitleProperty, value); } } public EditingContext Context { get { return (EditingContext)GetValue(ContextProperty); } set { SetValue(ContextProperty, value); } } public DependencyObject Owner { get; set; } public ResizeMode WindowResizeMode { get { return (ResizeMode)GetValue(WindowResizeModeProperty); } set { SetValue(WindowResizeModeProperty, value); } } public SizeToContent WindowSizeToContent { get { return (SizeToContent)GetValue(WindowSizeToContentProperty); } set { SetValue(WindowSizeToContentProperty, value); } } public bool EnableMinimizeButton { get; set; } public bool EnableMaximizeButton { get; set; } public string HelpKeyword { get; set; } internal FuncOnOk { get; set; } public void Show() { Show(false); } public bool ShowOkCancel() { bool? result = Show(true); return result.HasValue && result.Value; } internal void CloseDialog(bool commitChanges) { this.Window.DialogResult = commitChanges; } internal WorkflowElementDialogWindow Window { get; set; } bool? Show(bool okCancel) { WorkflowElementDialogWindow wnd = new WorkflowElementDialogWindow(this, okCancel, this.EnableMinimizeButton, this.EnableMaximizeButton, this.OnOk) { Title = this.Title }; if (null != this.Context) { WindowHelperService srv = this.Context.Services.GetService (); if (null != srv) { srv.TrySetWindowOwner(this.Owner, wnd); } } wnd.Closed += (s, e) => { this.OnWorkflowElementDialogClosed(((Window)s).DialogResult); }; return wnd.ShowDialog(); } protected override void OnInitialized(EventArgs e) { base.OnInitialized(e); // This is necessary for WPF data bindings to work. // It needs to be done explicitly, probably because // this ContentControl doesn't define its own // Template.VisualTree (maybe it should). this.DataContext = this; } protected void EnableOk(bool enabled) { if (this.Window != null) { this.Window.okButton.IsEnabled = enabled; } } protected virtual void OnModelItemChanged(object newItem) { } protected virtual void OnWorkflowElementDialogClosed(bool? dialogResult) { } static void OnModelItemChanged(DependencyObject dependencyObject, DependencyPropertyChangedEventArgs e) { WorkflowElementDialog dialog = (WorkflowElementDialog)dependencyObject; dialog.OnModelItemChanged(e.NewValue); } } } // 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
- ConfigurationElement.cs
- SettingsAttributes.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- _ConnectStream.cs
- PropertyCondition.cs
- BulletChrome.cs
- ExceptionRoutedEventArgs.cs
- InstanceHandle.cs
- ServicesUtilities.cs
- FaultContext.cs
- SAPICategories.cs
- SafeRightsManagementHandle.cs
- ProfilePropertyNameValidator.cs
- SqlCommand.cs
- remotingproxy.cs
- MouseBinding.cs
- Brush.cs
- Internal.cs
- OutKeywords.cs
- GPPOINT.cs
- BamlCollectionHolder.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- DataStreams.cs
- ComPlusInstanceContextInitializer.cs
- FontStretchConverter.cs
- LinkLabelLinkClickedEvent.cs
- ModelItemExtensions.cs
- ChannelDispatcher.cs
- WeakEventTable.cs
- PolyBezierSegmentFigureLogic.cs
- SchemaType.cs
- WebProxyScriptElement.cs
- CodeGenerator.cs
- controlskin.cs
- DbConnectionPoolGroup.cs
- HttpCacheVaryByContentEncodings.cs
- DesignerTransaction.cs
- DataContractSerializerSection.cs
- FusionWrap.cs
- LoadRetryStrategyFactory.cs
- OledbConnectionStringbuilder.cs
- SqlDataSourceView.cs
- ColorEditor.cs
- TypefaceMetricsCache.cs
- LocationEnvironment.cs
- ImageListImage.cs
- SqlUtil.cs
- ModelItemExtensions.cs
- DataGridAddNewRow.cs
- CssClassPropertyAttribute.cs
- ClientCultureInfo.cs
- ComponentCache.cs
- ConditionValidator.cs
- FillBehavior.cs
- SystemColorTracker.cs
- CommandHelpers.cs
- BitmapEffectGroup.cs
- DelegateOutArgument.cs
- SimpleBitVector32.cs
- GridLength.cs
- ZipIOLocalFileHeader.cs
- StrokeNode.cs
- ObfuscationAttribute.cs
- LayoutEngine.cs
- EditorAttribute.cs
- ValidatorCollection.cs
- Propagator.cs
- NullableConverter.cs
- BitmapFrameDecode.cs
- ExtenderProvidedPropertyAttribute.cs
- BitmapData.cs
- FontDriver.cs
- QueryParameter.cs
- PrintingPermissionAttribute.cs
- WebConfigurationFileMap.cs
- FixedSOMPageElement.cs
- returneventsaver.cs
- WindowsPen.cs
- Types.cs
- AlignmentYValidation.cs
- CompletedAsyncResult.cs
- PropertyEntry.cs
- X509Extension.cs
- WSDualHttpBinding.cs
- EnumMember.cs
- GridEntry.cs
- AsymmetricKeyExchangeDeformatter.cs
- PropertyBuilder.cs
- AncestorChangedEventArgs.cs
- WasAdminWrapper.cs
- StorageEndPropertyMapping.cs
- XamlVector3DCollectionSerializer.cs
- WindowsTab.cs
- ellipse.cs
- SymbolType.cs
- FileDialog.cs
- UnionCodeGroup.cs
- CultureInfo.cs
- CodeTypeReferenceCollection.cs
- counter.cs