22 references to GetImage
System.Workflow.ComponentModel (22)
AuthoringOM\Design\ActivityDesigner.cs (1)
3028private static Image defaultImage = DR.GetImage(DR.SmartTag);
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (1)
737Image standardImage = DR.GetImage(DR.Activity) as Image;
AuthoringOM\Design\MessageFilters\DragDropManager.cs (1)
659image = DR.GetImage(DR.Activities) as Bitmap;
AuthoringOM\Design\SequentialWorkflowRootDesigner.cs (2)
40private static readonly Image HeaderImage = DR.GetImage(DR.StartWorkflow); 41private static readonly Image FooterImage = DR.GetImage(DR.EndWorkflow);
AuthoringOM\Design\Themes.cs (12)
1676internal static readonly Bitmap LeftScrollImage = DR.GetImage(DR.MoveLeft) as Bitmap; 1677internal static readonly Bitmap LeftScrollImageUp = DR.GetImage(DR.MoveLeftUp) as Bitmap; 1678internal static readonly Bitmap RightScrollImage = DR.GetImage(DR.MoveRight) as Bitmap; 1679internal static readonly Bitmap RightScrollImageUp = DR.GetImage(DR.MoveRightUp) as Bitmap; 1680internal static readonly Bitmap PreviewButtonImage = DR.GetImage(DR.PreviewModeIcon) as Bitmap; 1681internal static readonly Bitmap EditButtonImage = DR.GetImage(DR.EditModeIcon) as Bitmap; 1682internal static readonly Bitmap PreviewImage = DR.GetImage(DR.PreviewIndicator) as Bitmap; 1930internal static readonly Image ConfigErrorImage = DR.GetImage(DR.ConfigError); 1931internal static readonly Image ScrollIndicatorImage = DR.GetImage(DR.ArrowLeft); 1932internal static readonly Image DropIndicatorImage = DR.GetImage(DR.DropShapeShort); 1933internal static readonly Image LockImage = DR.GetImage(DR.PreviewIndicator); 1934internal static readonly Image ReadOnlyImage = DR.GetImage(DR.ReadOnly);
AuthoringOM\Design\WorkflowView.cs (4)
649Bitmap tabImage = DR.GetImage(tabButtonInfo[i, 1]) as Bitmap; 1850ActionButton fitallButton = new ActionButton(new Image[] { DR.GetImage(DR.FitToScreen) as Bitmap }); 1867this.fitAllAction.Buttons[0].StateImages = new Bitmap[] { DR.GetImage(DR.FitToScreen) as Bitmap }; 1874this.fitAllAction.Buttons[0].StateImages = new Bitmap[] { DR.GetImage(DR.FitToWorkflow) as Bitmap };
AuthoringOM\Design\XomlDesignerLoader.cs (1)
892valueUIItemList.Add(new PropertyValueUIItem(DR.GetImage(DR.Bind), OnBindProperty, DR.GetString(DR.BindProperty)));