Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / Activities / Rules / Design / Dialogs / RuleSetBrowserDialog.cs / 1305376 / RuleSetBrowserDialog.cs
using System; using System.Collections.Generic; using System.Globalization; using System.Text; using System.Windows.Forms; using System.Workflow.Activities.Rules; using System.Workflow.ComponentModel; using System.Workflow.ComponentModel.Design; using System.Workflow.ComponentModel.Compiler; using System.Workflow.Interop; using System.Workflow.Activities.Common; namespace System.Workflow.Activities.Rules.Design { #region class RuleSetBrowserDialog internal sealed class RuleSetBrowserDialog : BasicBrowserDialog { #region members and constructors private RuleSetCollection ruleSetCollection; public RuleSetBrowserDialog(Activity activity, string name) : base(activity, name) { RuleDefinitions rules = ConditionHelper.Load_Rules_DT(activity.Site, Helpers.GetRootActivity(activity)); if (rules != null) this.ruleSetCollection = rules.RuleSets; InitializeListView(this.ruleSetCollection, name); } #endregion #region override members protected override string GetObjectName(object ruleObject) { RuleSet ruleSet = ruleObject as RuleSet; return ruleSet.Name; } protected override object OnNewInternal() { using (RuleSetDialog dlg = new RuleSetDialog(this.Activity, null)) { if (DialogResult.OK == dlg.ShowDialog(this)) { RuleSet ruleSet = dlg.RuleSet; ruleSet.Name = ruleSetCollection.GenerateRuleSetName(); this.ruleSetCollection.Add(ruleSet); return ruleSet; } } return null; } protected override bool OnEditInternal(object currentRuleObject, out object updatedRuleObject) { RuleSet ruleSet = currentRuleObject as RuleSet; updatedRuleObject = null; using (RuleSetDialog dlg = new RuleSetDialog(this.Activity, ruleSet)) { if (DialogResult.OK == dlg.ShowDialog()) { this.ruleSetCollection.Remove(ruleSet.Name); this.ruleSetCollection.Add(dlg.RuleSet); updatedRuleObject = dlg.RuleSet; return true; } } return false; } protected override string OnRenameInternal(object ruleObject) { RuleSet ruleSet = ruleObject as RuleSet; using (RenameRuleObjectDialog dlg = new RenameRuleObjectDialog(this.Activity.Site, ruleSet.Name, new RenameRuleObjectDialog.NameValidatorDelegate(IsUniqueName), this)) { if ((dlg.ShowDialog(this) == DialogResult.OK) && (dlg.RuleObjectName != ruleSet.Name)) { this.ruleSetCollection.Remove(ruleSet); ruleSet.Name = dlg.RuleObjectName; this.ruleSetCollection.Add(ruleSet); return dlg.RuleObjectName; } } return null; } protected override void OnDeleteInternal(object ruleObject) { RuleSet ruleSet = ruleObject as RuleSet; this.ruleSetCollection.Remove(ruleSet.Name); } protected override void UpdateListViewItem(object ruleObject, ListViewItem listViewItem) { RuleSet ruleSet = ruleObject as RuleSet; ValidationManager manager = new ValidationManager(this.Activity.Site); ITypeProvider typeProvider = (ITypeProvider)manager.GetService(typeof(ITypeProvider)); RuleValidation validation = new RuleValidation(this.Activity, typeProvider, false); bool valid; using (WorkflowCompilationContext.CreateScope(manager)) { valid = ruleSet.Validate(validation); } listViewItem.Tag = ruleSet; listViewItem.Text = ruleSet.Name; string validText = valid ? Messages.Yes : Messages.No; if (listViewItem.SubItems.Count == 1) listViewItem.SubItems.Add(validText); else listViewItem.SubItems[1].Text = validText; } protected override void UpdatePreview(TextBox previewBox, object ruleObject) { RuleSet ruleSet = ruleObject as RuleSet; NativeMethods.SendMessage(previewBox.Handle, NativeMethods.WM_SETREDRAW, IntPtr.Zero, IntPtr.Zero); previewBox.Lines = DesignerHelpers.GetRuleSetPreview(ruleSet).Split('\n'); NativeMethods.SendMessage(previewBox.Handle, NativeMethods.WM_SETREDRAW, new IntPtr(1), IntPtr.Zero); previewBox.Invalidate(); } protected override string DescriptionText { get { return Messages.RuleSetDescriptionText; } } protected override string TitleText { get { return Messages.RuleSetTitleText; } } protected override string PreviewLabelText { get { return Messages.RuleSetPreviewLabelText; } } protected override string ConfirmDeleteMessageText { get { return Messages.RuleSetConfirmDeleteMessageText; } } protected override string ConfirmDeleteTitleText { get { return Messages.DeleteRuleSet; } } internal override string EmptyNameErrorText { get { return Messages.RuleSetEmptyNameErrorText; } } internal override string DuplicateNameErrorText { get { return Messages.RuleSetDuplicateNameErrorText; } } internal override string NewNameLabelText { get { return Messages.RuleSetNewNameLableText; } } internal override string RenameTitleText { get { return Messages.RuleSetRenameTitleText; } } // used by RenameConditionDialog internal override bool IsUniqueName(string ruleName) { return (!this.ruleSetCollection.Contains(ruleName)); } #endregion } #endregion } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Collections.Generic; using System.Globalization; using System.Text; using System.Windows.Forms; using System.Workflow.Activities.Rules; using System.Workflow.ComponentModel; using System.Workflow.ComponentModel.Design; using System.Workflow.ComponentModel.Compiler; using System.Workflow.Interop; using System.Workflow.Activities.Common; namespace System.Workflow.Activities.Rules.Design { #region class RuleSetBrowserDialog internal sealed class RuleSetBrowserDialog : BasicBrowserDialog { #region members and constructors private RuleSetCollection ruleSetCollection; public RuleSetBrowserDialog(Activity activity, string name) : base(activity, name) { RuleDefinitions rules = ConditionHelper.Load_Rules_DT(activity.Site, Helpers.GetRootActivity(activity)); if (rules != null) this.ruleSetCollection = rules.RuleSets; InitializeListView(this.ruleSetCollection, name); } #endregion #region override members protected override string GetObjectName(object ruleObject) { RuleSet ruleSet = ruleObject as RuleSet; return ruleSet.Name; } protected override object OnNewInternal() { using (RuleSetDialog dlg = new RuleSetDialog(this.Activity, null)) { if (DialogResult.OK == dlg.ShowDialog(this)) { RuleSet ruleSet = dlg.RuleSet; ruleSet.Name = ruleSetCollection.GenerateRuleSetName(); this.ruleSetCollection.Add(ruleSet); return ruleSet; } } return null; } protected override bool OnEditInternal(object currentRuleObject, out object updatedRuleObject) { RuleSet ruleSet = currentRuleObject as RuleSet; updatedRuleObject = null; using (RuleSetDialog dlg = new RuleSetDialog(this.Activity, ruleSet)) { if (DialogResult.OK == dlg.ShowDialog()) { this.ruleSetCollection.Remove(ruleSet.Name); this.ruleSetCollection.Add(dlg.RuleSet); updatedRuleObject = dlg.RuleSet; return true; } } return false; } protected override string OnRenameInternal(object ruleObject) { RuleSet ruleSet = ruleObject as RuleSet; using (RenameRuleObjectDialog dlg = new RenameRuleObjectDialog(this.Activity.Site, ruleSet.Name, new RenameRuleObjectDialog.NameValidatorDelegate(IsUniqueName), this)) { if ((dlg.ShowDialog(this) == DialogResult.OK) && (dlg.RuleObjectName != ruleSet.Name)) { this.ruleSetCollection.Remove(ruleSet); ruleSet.Name = dlg.RuleObjectName; this.ruleSetCollection.Add(ruleSet); return dlg.RuleObjectName; } } return null; } protected override void OnDeleteInternal(object ruleObject) { RuleSet ruleSet = ruleObject as RuleSet; this.ruleSetCollection.Remove(ruleSet.Name); } protected override void UpdateListViewItem(object ruleObject, ListViewItem listViewItem) { RuleSet ruleSet = ruleObject as RuleSet; ValidationManager manager = new ValidationManager(this.Activity.Site); ITypeProvider typeProvider = (ITypeProvider)manager.GetService(typeof(ITypeProvider)); RuleValidation validation = new RuleValidation(this.Activity, typeProvider, false); bool valid; using (WorkflowCompilationContext.CreateScope(manager)) { valid = ruleSet.Validate(validation); } listViewItem.Tag = ruleSet; listViewItem.Text = ruleSet.Name; string validText = valid ? Messages.Yes : Messages.No; if (listViewItem.SubItems.Count == 1) listViewItem.SubItems.Add(validText); else listViewItem.SubItems[1].Text = validText; } protected override void UpdatePreview(TextBox previewBox, object ruleObject) { RuleSet ruleSet = ruleObject as RuleSet; NativeMethods.SendMessage(previewBox.Handle, NativeMethods.WM_SETREDRAW, IntPtr.Zero, IntPtr.Zero); previewBox.Lines = DesignerHelpers.GetRuleSetPreview(ruleSet).Split('\n'); NativeMethods.SendMessage(previewBox.Handle, NativeMethods.WM_SETREDRAW, new IntPtr(1), IntPtr.Zero); previewBox.Invalidate(); } protected override string DescriptionText { get { return Messages.RuleSetDescriptionText; } } protected override string TitleText { get { return Messages.RuleSetTitleText; } } protected override string PreviewLabelText { get { return Messages.RuleSetPreviewLabelText; } } protected override string ConfirmDeleteMessageText { get { return Messages.RuleSetConfirmDeleteMessageText; } } protected override string ConfirmDeleteTitleText { get { return Messages.DeleteRuleSet; } } internal override string EmptyNameErrorText { get { return Messages.RuleSetEmptyNameErrorText; } } internal override string DuplicateNameErrorText { get { return Messages.RuleSetDuplicateNameErrorText; } } internal override string NewNameLabelText { get { return Messages.RuleSetNewNameLableText; } } internal override string RenameTitleText { get { return Messages.RuleSetRenameTitleText; } } // used by RenameConditionDialog internal override bool IsUniqueName(string ruleName) { return (!this.ruleSetCollection.Contains(ruleName)); } #endregion } #endregion } // 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
- WeakReferenceList.cs
- FacetChecker.cs
- WebSysDescriptionAttribute.cs
- hwndwrapper.cs
- DeploymentExceptionMapper.cs
- GZipDecoder.cs
- DeploymentSectionCache.cs
- ServiceChannel.cs
- WSHttpBindingBaseElement.cs
- SafeNativeMemoryHandle.cs
- ChunkedMemoryStream.cs
- RelationshipConverter.cs
- FixUp.cs
- GeometryModel3D.cs
- WebDescriptionAttribute.cs
- DataGridViewHeaderCell.cs
- ToolboxComponentsCreatedEventArgs.cs
- X509Chain.cs
- RecipientInfo.cs
- ClassHandlersStore.cs
- VirtualizedItemPattern.cs
- CodeAttributeArgument.cs
- SamlSubject.cs
- SID.cs
- WindowsTab.cs
- CollectionEditor.cs
- SqlDataSourceTableQuery.cs
- OpenTypeLayoutCache.cs
- ServiceAppDomainAssociationProvider.cs
- TypeReference.cs
- MonthCalendarDesigner.cs
- SqlHelper.cs
- VolatileResourceManager.cs
- SystemIPGlobalStatistics.cs
- InstanceDataCollection.cs
- BaseDataBoundControlDesigner.cs
- serverconfig.cs
- PageParserFilter.cs
- ValidatorCompatibilityHelper.cs
- SqlOuterApplyReducer.cs
- OleDbParameter.cs
- FacetChecker.cs
- DbConnectionPoolOptions.cs
- DynamicILGenerator.cs
- DataConnectionHelper.cs
- IntSecurity.cs
- DataGridViewMethods.cs
- EtwProvider.cs
- TimeSpanConverter.cs
- DynamicDiscoveryDocument.cs
- StringDictionaryWithComparer.cs
- DataGridViewRowPrePaintEventArgs.cs
- CollectionContainer.cs
- BamlLocalizabilityResolver.cs
- ParameterInfo.cs
- ApplyTemplatesAction.cs
- NavigationProperty.cs
- PaginationProgressEventArgs.cs
- DataGridViewAccessibleObject.cs
- EventSource.cs
- ButtonFlatAdapter.cs
- VBIdentifierName.cs
- X509SecurityToken.cs
- NamespaceQuery.cs
- Serializer.cs
- BlockUIContainer.cs
- brushes.cs
- DecoratedNameAttribute.cs
- DbResourceAllocator.cs
- _DisconnectOverlappedAsyncResult.cs
- ObjectListComponentEditor.cs
- SmiContextFactory.cs
- DbConnectionHelper.cs
- UniqueEventHelper.cs
- Profiler.cs
- PkcsMisc.cs
- PenContexts.cs
- FileClassifier.cs
- PagesSection.cs
- Compiler.cs
- BuildProvider.cs
- SystemResources.cs
- MatrixCamera.cs
- KnownBoxes.cs
- ProcessHostMapPath.cs
- ImportCatalogPart.cs
- SecuritySessionServerSettings.cs
- XmlSchemaExporter.cs
- TextLineBreak.cs
- HtmlForm.cs
- CustomExpressionEventArgs.cs
- HttpListenerResponse.cs
- MenuItem.cs
- Persist.cs
- SqlClientWrapperSmiStream.cs
- TextEditorSpelling.cs
- SaveFileDialog.cs
- Logging.cs
- SmiRecordBuffer.cs
- SynchronizationContext.cs