215 references to GetString
System.Workflow.ComponentModel (215)
AuthoringOM\Behaviors\ExceptionHandlersDesigner.cs (1)
23HelpText = DR.GetString(DR.DropExceptionsHere);
AuthoringOM\Design\ActivityDesigner.cs (13)
354this.designerVerbs.Add(new ActivityDesignerVerb(this, DesignerVerbGroup.General, DR.GetString(DR.GenerateEventHandlers), new EventHandler(OnGenerateEventHandler), new EventHandler(OnGenerateEventHandlerStatusUpdate))); 359this.designerVerbs.Add(new ActivityDesignerVerb(this, DesignerVerbGroup.General, DR.GetString(DR.PromoteBindings), new EventHandler(OnPromoteBindings), new EventHandler(OnPromoteBindingsStatusUpdate))); 361this.designerVerbs.Add(new ActivityDesignerVerb(this, DesignerVerbGroup.General, DR.GetString(DR.BindSelectedProperty), new EventHandler(OnBindProperty), new EventHandler(OnBindPropertyStatusUpdate))); 363ActivityDesignerVerb designerVerb = new ActivityDesignerVerb(this, DesignerVerbGroup.General, DR.GetString(DR.MoveLeftDesc), new EventHandler(OnMoveBranch), new EventHandler(OnStatusMoveBranch)); 367designerVerb = new ActivityDesignerVerb(this, DesignerVerbGroup.General, DR.GetString(DR.MoveRightDesc), new EventHandler(OnMoveBranch), new EventHandler(OnStatusMoveBranch)); 769title = DR.GetString(DR.InfoTipTitle, Activity.GetType().Name, activityName); 799this.rulesText = DR.GetString(DR.Rules); 812ruleDescription = DR.GetString(DR.Empty); 820this.rulesText += "\n\n" + DR.GetString(DR.More); 2223verb.Properties["Text"] = (propertyName != null && verb.Enabled) ? string.Format(CultureInfo.CurrentCulture, DR.GetString(DR.BindSelectedPropertyFormat), propertyName) : DR.GetString(DR.BindSelectedProperty); 2317throw new ArgumentException(DR.GetString(DR.Error_InvalidActivity), "component"); 2565throw new Exception(DR.GetString(DR.ActivityInsertError) + "\n" + ex.Message, ex);
AuthoringOM\Design\ActivityDesignerAccessibleObject.cs (4)
48throw new ArgumentException(DR.GetString(DR.DesignerNotInitialized), "activityDesigner"); 65return DR.GetString(DR.AccessibleAction); 73return DR.GetString(DR.ActivityDesignerAccessibleDescription, this.activityDesigner.Activity.GetType().Name); 81return DR.GetString(DR.ActivityDesignerAccessibleHelp, this.activityDesigner.Activity.GetType().Name);
AuthoringOM\Design\ActivityPreviewDesigner.cs (5)
59this.previewStrip.HelpText = DR.GetString(DR.DropActivitiesHere); 270DesignerVerb verb = new ActivityDesignerVerb(this, DesignerVerbGroup.View, DR.GetString(DR.ViewPreviousActivity), new EventHandler(OnViewActivity), new EventHandler(OnViewActivityStatusUpdate)); 273verb = new ActivityDesignerVerb(this, DesignerVerbGroup.View, DR.GetString(DR.ViewNextActivity), new EventHandler(OnViewActivity), new EventHandler(OnViewActivityStatusUpdate)); 279verb = new ActivityDesignerVerb(this, DesignerVerbGroup.Edit, DR.GetString(DR.PreviewActivity), new EventHandler(OnChangePreviewMode), new EventHandler(OnPreviewModeStatusUpdate)); 282verb = new ActivityDesignerVerb(this, DesignerVerbGroup.Edit, DR.GetString(DR.EditActivity), new EventHandler(OnChangePreviewMode), new EventHandler(OnPreviewModeStatusUpdate));
AuthoringOM\Design\CommandSet.cs (21)
112new CommandSetItem(new EventHandler(OnStatusZoom), new EventHandler(OnZoom), WorkflowMenuCommands.Zoom400Mode, DR.GetString(DR.Zoom400Mode)), 113new CommandSetItem(new EventHandler(OnStatusZoom), new EventHandler(OnZoom), WorkflowMenuCommands.Zoom300Mode, DR.GetString(DR.Zoom300Mode)), 114new CommandSetItem(new EventHandler(OnStatusZoom), new EventHandler(OnZoom), WorkflowMenuCommands.Zoom200Mode, DR.GetString(DR.Zoom200Mode)), 115new CommandSetItem(new EventHandler(OnStatusZoom), new EventHandler(OnZoom), WorkflowMenuCommands.Zoom150Mode, DR.GetString(DR.Zoom150Mode)), 116new CommandSetItem(new EventHandler(OnStatusZoom), new EventHandler(OnZoom), WorkflowMenuCommands.Zoom100Mode, DR.GetString(DR.Zoom100Mode)), 117new CommandSetItem(new EventHandler(OnStatusZoom), new EventHandler(OnZoom), WorkflowMenuCommands.Zoom75Mode, DR.GetString(DR.Zoom75Mode)), 118new CommandSetItem(new EventHandler(OnStatusZoom), new EventHandler(OnZoom), WorkflowMenuCommands.Zoom50Mode, DR.GetString(DR.Zoom50Mode)), 119new CommandSetItem(new EventHandler(OnStatusZoom), new EventHandler(OnZoom), WorkflowMenuCommands.ShowAll, DR.GetString(DR.ZoomShowAll)), 728DesignerHelpers.ShowError(this.serviceProvider, DR.GetString(DR.ThereIsNoPrinterInstalledErrorMessage)); 740supportedFormats.Add(new SupportedImageFormats(DR.GetString(DR.BMPImageFormat), ImageFormat.Bmp)); 741supportedFormats.Add(new SupportedImageFormats(DR.GetString(DR.JPEGImageFormat), ImageFormat.Jpeg)); 742supportedFormats.Add(new SupportedImageFormats(DR.GetString(DR.PNGImageFormat), ImageFormat.Png)); 743supportedFormats.Add(new SupportedImageFormats(DR.GetString(DR.TIFFImageFormat), ImageFormat.Tiff)); 744supportedFormats.Add(new SupportedImageFormats(DR.GetString(DR.WMFImageFormat), ImageFormat.Wmf)); 745supportedFormats.Add(new SupportedImageFormats(DR.GetString(DR.EXIFImageFormat), ImageFormat.Exif)); 746supportedFormats.Add(new SupportedImageFormats(DR.GetString(DR.EMFImageFormat), ImageFormat.Emf)); 749saveFileDialog.Title = DR.GetString(DR.SaveWorkflowImageDialogTitle); 773DesignerHelpers.ShowError(this.serviceProvider, DR.GetString(DR.ThereIsNoPrinterInstalledErrorMessage)); 812string errorString = DR.GetString(DR.SelectedPrinterIsInvalidErrorMessage); 902throw new Exception(DR.GetString(DR.ActivityInsertError) + "\n" + ex.Message, ex); 906throw new InvalidOperationException(DR.GetString(DR.InvalidOperationBadClipboardFormat));
AuthoringOM\Design\ComponentSerializationService.cs (3)
166throw new InvalidOperationException(DR.GetString(DR.InvalidOperationStoreAlreadyClosed)); 182throw new InvalidOperationException(DR.GetString(DR.InvalidOperationStoreAlreadyClosed)); 214throw new InvalidOperationException(DR.GetString(DR.InvalidOperationDeserializationReturnedNonActivity));
AuthoringOM\Design\Connector.cs (3)
77throw new ArgumentException(DR.GetString(DR.Error_ConnectionPoint), "connectionIndex"); 218throw new ArgumentException(DR.GetString(DR.Error_Connector1)); 1848throw new ArgumentException(DR.GetString(DR.Error_Connector2));
AuthoringOM\Design\DesignerHelpers.cs (3)
1429DesignerHelpers.ShowError(serviceProvider, DR.GetString(DR.NoHelpAvailable)); 1434ShowMessage(serviceProvider, message, DR.GetString(DR.WorkflowDesignerTitle), MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1); 1449ShowMessage(serviceProvider, message, DR.GetString(DR.WorkflowDesignerTitle), MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1);
AuthoringOM\Design\DesignerWidgets.cs (21)
1451throw new ArgumentException(DR.GetString(DR.InvalidDockingStyle, "dockStyle")); 2050throw new ArgumentException(DR.GetString(DR.Error_TabExistsWithSameId)); 2070throw new ArgumentException(DR.GetString(DR.ButtonInformationMissing)); 2082throw new ArgumentException(DR.GetString(DR.ButtonInformationMissing)); 2099throw new ArgumentException(DR.GetString(DR.ButtonInformationMissing)); 2964return DR.GetString(DR.AccessibleAction); 2975description = DR.GetString(DR.LeftScrollButtonAccessibleDescription); 2979description = DR.GetString(DR.RightScrollButtonAccessibleDescription); 2985description = DR.GetString(DR.ActivityDesignerAccessibleDescription, activityDesigner.Activity.GetType().Name); 2999help = DR.GetString(DR.LeftScrollButtonAccessibleHelp); 3003help = DR.GetString(DR.RightScrollButtonAccessibleHelp); 3009help = DR.GetString(DR.ActivityDesignerAccessibleHelp, activityDesigner.Activity.GetType().Name); 3023name = DR.GetString(DR.LeftScrollButtonName); 3027name = DR.GetString(DR.RightScrollButtonName); 3445string previewDescription = DR.GetString(DR.SelectActivityDesc); 3514string previewModeDescription = (PreviewMode) ? DR.GetString(DR.PreviewMode) : DR.GetString(DR.EditMode); 3607return DR.GetString(DR.AccessibleAction); 3615return DR.GetString(DR.PreviewButtonAccessibleDescription); 3623return DR.GetString(DR.PreviewButtonAccessibleHelp); 3631return DR.GetString(DR.PreviewButtonName);
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (13)
424error = DR.GetString(DR.ThemeNameNotValid); 431error = DR.GetString(DR.ThemePathNotValid); 441error = DR.GetString(DR.ThemePathNotValid); 451error = DR.GetString(DR.ThemePathNotValid); 458error = DR.GetString(DR.ThemeFileNotXml); 490if (DialogResult.No == DesignerHelpers.ShowMessage(this.serviceProvider, DR.GetString(DR.UpdateRelativePaths), DR.GetString(DR.WorkflowDesignerTitle), MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1)) 506this.bufferedTheme.Description = DR.GetString(DR.ThemeDescription); 513DesignerHelpers.ShowError(this.serviceProvider, DR.GetString(DR.ThemeFileCreationError)); 595fileDialog.Filter = DR.GetString(DR.ThemeFileFilter); 619this.previewButton.Text = DR.GetString(DR.Preview) + " <<"; 624this.previewButton.Text = DR.GetString(DR.Preview) + " >>"; 678TreeNode workflowNode = new TreeNode(DR.GetString(DR.WorkflowDesc));
AuthoringOM\Design\Dialogs\TypeBrowserDialog.cs (5)
111throw new Exception(DR.GetString(DR.Error_WorkflowNotLoaded)); 706fileDialog.Title = DR.GetString(DR.OpenfileDialogTitle); 713fileDialog.Filter = DR.GetString(DR.PackageAssemblyReferenceFilter); 726string errorMessage = (exception is ReflectionTypeLoadException || (exception.InnerException != null && exception.InnerException is ReflectionTypeLoadException)) ? DR.GetString(DR.TypeBrowser_UnableToLoadOneOrMoreTypes) : DR.GetString(DR.TypeBrowser_ProblemsLoadingAssembly);
AuthoringOM\Design\Dialogs\WorkflowPageSetupDialog.cs (14)
107throw new InvalidOperationException(DR.GetString(DR.WorkflowPrintDocumentNotFound, typeof(WorkflowPrintDocument).Name)); 146this.headerFooterNone = DR.GetString(DR.HeaderFooterStringNone); //"(none)" 147this.headerFooterCustom = DR.GetString(DR.HeaderFooterStringCustom); //"(none)" 149DR.GetString(DR.HeaderFooterFormat1), //"Page %Page%",// 150DR.GetString(DR.HeaderFooterFormat2), //"Page %Page% of %Pages%",// 151DR.GetString(DR.HeaderFooterFormat3), //"%Path%%File, Page %Page% of %Pages%", // 152DR.GetString(DR.HeaderFooterFormat4), //"%Path%%File, Page %Page%",// 153DR.GetString(DR.HeaderFooterFormat5), //"%File, %Date% %Time%, Page %Page%",// 154DR.GetString(DR.HeaderFooterFormat6), //"%File, Page %Page% of %Pages%",// 155DR.GetString(DR.HeaderFooterFormat7), //"%File, Page %Page%",// 156DR.GetString(DR.HeaderFooterFormat8), //"Prepated by %User% %Date%",// 157DR.GetString(DR.HeaderFooterFormat9), //"%User%, Page %Page%, %Date%"// 1057string errorString = DR.GetString(DR.SelectedPrinterIsInvalidErrorMessage); 1083string errorString = DR.GetString(DR.EnteredMarginsAreNotValidErrorMessage);
AuthoringOM\Design\FreeFormDesigner.cs (10)
435throw new InvalidOperationException(DR.GetString(DR.Error_AddConnector1)); 439throw new ArgumentException(DR.GetString(DR.Error_AddConnector2)); 445throw new InvalidOperationException(DR.GetString(DR.Error_AddConnector3)); 484throw new ArgumentException(DR.GetString(DR.InvalidDesignerSpecified, "containedDesigner")); 500throw new ArgumentException(DR.GetString(DR.InvalidDesignerSpecified, "containedDesigner")); 516throw new ArgumentException(DR.GetString(DR.InvalidDesignerSpecified, "containedDesigner")); 535throw new ArgumentException(DR.GetString(DR.InvalidDesignerSpecified, "containedDesigner")); 1183transaction = designerHost.CreateTransaction(DR.GetString(DR.ZOrderUndoDescription, activityDesigner.Text)); 1397ActivityDesignerVerb verb = new ActivityDesignerVerb(activityDesigner, DesignerVerbGroup.Actions, DR.GetString(DR.BringToFront), new EventHandler(OnZOrderChanged), new EventHandler(OnZOrderStatusUpdate)); 1400verb = new ActivityDesignerVerb(activityDesigner, DesignerVerbGroup.Actions, DR.GetString(DR.SendToBack), new EventHandler(OnZOrderChanged), new EventHandler(OnZOrderStatusUpdate));
AuthoringOM\Design\MessageFilters\DragDropManager.cs (3)
546string errorMessage = DR.GetString(DR.Error_FailedToDeserializeComponents); 547errorMessage += "\r\n" + DR.GetString(DR.Error_Reason, dragDropException); 660description = DR.GetString(DR.ActivitiesDesc);
AuthoringOM\Design\MessageFilters\ResizingMessageFilter.cs (7)
30throw new InvalidOperationException(DR.GetString(DR.WorkflowViewNull)); 48throw new InvalidOperationException(DR.GetString(DR.WorkflowViewNull)); 78throw new InvalidOperationException(DR.GetString(DR.WorkflowViewNull)); 119throw new InvalidOperationException(DR.GetString(DR.WorkflowViewNull)); 237throw new InvalidOperationException(DR.GetString(DR.WorkflowViewNull)); 246this.designerTransaction = designerHost.CreateTransaction(DR.GetString(DR.ResizeUndoDescription, designer.Text)); 272throw new InvalidOperationException(DR.GetString(DR.WorkflowViewNull));
AuthoringOM\Design\ParallelActivityDesigner.cs (2)
108this.designerVerbs.Add(new ActivityDesignerVerb(this, DesignerVerbGroup.General, DR.GetString(DR.AddBranch), new EventHandler(OnAddBranch), new EventHandler(OnStatusAddBranch))); 472CompositeActivityDesigner.InsertActivities(this, new ConnectorHitTestInfo(this, HitTestLocations.Designer, compositeActivity.Activities.Count), new List<Activity>(new Activity[] { branchActivity }).AsReadOnly(), DR.GetString(DR.AddingBranch, branchActivity.GetType().Name));
AuthoringOM\Design\SecondaryViewProvider.cs (5)
48viewTypes.Add(new object[] { designer.Activity.GetType(), DR.GetString(DR.ViewActivity, displayName) }); 59viewTypes.Add(new object[] { typeof(CancellationHandlerActivity), DR.GetString(DR.ViewCancelHandler) }); 64viewTypes.Add(new object[] { typeof(FaultHandlersActivity), DR.GetString(DR.ViewExceptions) }); 69viewTypes.Add(new object[] { typeof(CompensationHandlerActivity), DR.GetString(DR.ViewCompensation) }); 74viewTypes.Add(new object[] { Type.GetType(EventHandlersRef), DR.GetString(DR.ViewEvents) });
AuthoringOM\Design\SequenceDesignerAccessibleObject.cs (4)
115return DR.GetString(DR.AccessibleAction); 123return DR.GetString(DR.ConnectorAccessibleDescription, this.connectorHitInfo.GetType().Name); 131return DR.GetString(DR.ConnectorAccessibleHelp, this.connectorHitInfo.GetType().Name); 139return DR.GetString(DR.ConnectorDesc, this.connectorHitInfo.MapToIndex().ToString(CultureInfo.InvariantCulture), Parent.Name);
AuthoringOM\Design\SequentialActivityDesigner.cs (1)
386HelpText = DR.GetString(DR.DropActivitiesHere);
AuthoringOM\Design\StructuredCompositeActivityDesigner.cs (1)
279throw new InvalidOperationException(DR.GetString(DR.Error_MultiviewSequentialActivityDesigner));
AuthoringOM\Design\Themes.cs (59)
168private string description = DR.GetString(DR.DefaultThemeDescription); 328string tempThemePath = Path.Combine(path, DR.GetString(DR.MyFavoriteTheme) + ".wtm"); 331tempThemePath = Path.Combine(path, DR.GetString(DR.MyFavoriteTheme) + i.ToString(CultureInfo.InvariantCulture) + ".wtm"); 442standardThemes.Add(ThemeType.Default, new string[] { DR.GetString(DR.DefaultTheme), DR.GetString(DR.DefaultThemeDescription) }); 443standardThemes.Add(ThemeType.System, new string[] { DR.GetString(DR.OSTheme), DR.GetString(DR.SystemThemeDescription) }); 496throw new ArgumentException(DR.GetString(DR.ThemePathNotValid), "themeFilePath"); 583throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 599throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 615throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 633throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 704throw new InvalidOperationException(DR.GetString(DR.Error_ThemeAttributeMissing, designerType.FullName)); 707throw new InvalidOperationException(DR.GetString(DR.Error_ThemeTypeMissing, designerType.FullName)); 737((IDesignerSerializationManager)serializationManager).ReportError(new WorkflowMarkupSerializationException(DR.GetString(DR.ThemeTypesMismatch, new object[] { themeAttrib.DesignerThemeType.FullName, designerTheme.GetType().FullName }))); 900throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 917throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 1072throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 1079throw new InvalidOperationException(DR.GetString(DR.Error_InvalidImageResource)); 1106throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 1139throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 1164throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 1167throw new Exception(DR.GetString(DR.CustomStyleNotSupported)); 1193throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 1219throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 1243throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 1500throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 1507throw new InvalidOperationException(DR.GetString(DR.Error_InvalidImageResource)); 1533throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 1553throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 1573throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 1593throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 1758throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 1784throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 1810throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2208throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2211throw new Exception(DR.GetString(DR.EmptyFontFamilyNotSupported)); 2221throw new Exception(DR.GetString(DR.FontFamilyNotSupported, value), e); 2253throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2273throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2293throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2316throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2349throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2382throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2409throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2442throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2475throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2504throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2530throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2551throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2558throw new InvalidOperationException(DR.GetString(DR.Error_InvalidImageResource)); 2584throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2604throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2624throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2657throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2709throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2730throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 2750throw new InvalidOperationException(DR.GetString(DR.ThemePropertyReadOnly)); 3299fileDialog.Filter = DR.GetString(DR.ImageFileFilter);
AuthoringOM\Design\WorkflowInlining.cs (3)
347HelpText = DR.GetString(DR.SpecifyTargetWorkflow); 475HelpText = DR.GetString(DR.BuildTargetWorkflow); 477HelpText = DR.GetString(DR.SpecifyTargetWorkflow);
AuthoringOM\Design\WorkflowPrinting.cs (2)
101DesignerHelpers.ShowError(this.workflowView, DR.GetString(DR.SelectedPrinterIsInvalidErrorMessage)); 197DesignerHelpers.ShowError(this.workflowView, DR.GetString(DR.SelectedPrinterIsInvalidErrorMessage) + "\n" + exception.Message);
AuthoringOM\Design\WorkflowView.cs (11)
342throw new NotSupportedException(DR.GetString(DR.ZoomLevelException2, AmbientTheme.MinZoom, AmbientTheme.MaxZoom)); 423throw new NotSupportedException(DR.GetString(DR.ShadowDepthException, AmbientTheme.MinShadowDepth, AmbientTheme.MaxShadowDepth)); 495DesignerHelpers.ShowError(this, DR.GetString(DR.ThereIsNoPrinterInstalledErrorMessage)); 650string buttonCaption = DR.GetString(tabButtonInfo[i, 0]); 734throw new ArgumentNullException(DR.GetString(DR.Error_WorkflowLayoutNull)); 1866this.fitAllAction.Buttons[0].Description = DR.GetString(DR.FitToScreenDescription); 1873this.fitAllAction.Buttons[0].Description = DR.GetString(DR.FitToWorkflowDescription); 2271return DR.GetString(DR.AccessibleAction); 2279return DR.GetString(DR.WorkflowViewAccessibleDescription); 2287return DR.GetString(DR.WorkflowViewAccessibleHelp); 2295return DR.GetString(DR.WorkflowViewAccessibleName);
AuthoringOM\Design\XomlDesignerLoader.cs (1)
892valueUIItemList.Add(new PropertyValueUIItem(DR.GetImage(DR.Bind), OnBindProperty, DR.GetString(DR.BindProperty)));