11 types derived from DesignerGlyph
System.Workflow.Activities (1)
Designers\StateDesigner.CommentLayoutGlyph.cs (1)
24private class CommentLayoutGlyph : DesignerGlyph
System.Workflow.ComponentModel (9)
AuthoringOM\Design\ActivityDesigner.cs (1)
3025internal sealed class SmartTag : DesignerGlyph
AuthoringOM\Design\Glyphs\CommentGlyph.cs (1)
16public class CommentGlyph : DesignerGlyph
AuthoringOM\Design\Glyphs\ConfigErrorGlyph.cs (1)
15public class ConfigErrorGlyph : DesignerGlyph
AuthoringOM\Design\Glyphs\ConnectionPointGlyph.cs (1)
11internal sealed class ConnectionPointGlyph : DesignerGlyph
AuthoringOM\Design\Glyphs\ConnectorDragDropGlyph.cs (1)
11internal sealed class ConnectorDragDropGlyph : DesignerGlyph
AuthoringOM\Design\Glyphs\LockedActivityGlyph.cs (1)
16public class LockedActivityGlyph : DesignerGlyph
AuthoringOM\Design\Glyphs\ReadOnlyActivityGlyph.cs (1)
16public class ReadOnlyActivityGlyph : DesignerGlyph
AuthoringOM\Design\Glyphs\SelectionGlyph.cs (1)
13public abstract class SelectionGlyph : DesignerGlyph
AuthoringOM\Design\Glyphs\ShadowGlyph.cs (1)
12public sealed class ShadowGlyph : DesignerGlyph
System.WorkflowServices (1)
System\Workflow\ComponentModel\Design\HighlightOverlayGlyph.cs (1)
20internal class HighlightOverlayGlyph : DesignerGlyph
32 references to DesignerGlyph
System.Workflow.Activities (2)
Designers\StateDesigner.CommentLayoutGlyph.cs (1)
49return DesignerGlyph.NormalPriority;
Designers\StateDesigner.LayoutSelectionGlyph.cs (1)
43return DesignerGlyph.HighestPriority;
System.Workflow.ComponentModel (30)
AuthoringOM\Design\ActivityDesigner.cs (2)
1022foreach (DesignerGlyph glyph in glyphManager.GetDesignerGlyphs(this)) 1081foreach (DesignerGlyph glyph in glyphs)
AuthoringOM\Design\Glyphs\CommentGlyph.cs (1)
44return DesignerGlyph.CommentPriority;
AuthoringOM\Design\Glyphs\ConfigErrorGlyph.cs (1)
41return DesignerGlyph.ConfigErrorPriority;
AuthoringOM\Design\Glyphs\ConnectionPointGlyph.cs (1)
39return DesignerGlyph.ConnectionPointPriority;
AuthoringOM\Design\Glyphs\ConnectorDragDropGlyph.cs (1)
38return DesignerGlyph.ConnectorDragDropPriority;
AuthoringOM\Design\Glyphs\LockedActivityGlyph.cs (1)
48return DesignerGlyph.LockedGlyphPriority;
AuthoringOM\Design\Glyphs\ReadOnlyActivityGlyph.cs (1)
32return DesignerGlyph.ReadOnlyGlyphPriority;
AuthoringOM\Design\Glyphs\SelectionGlyph.cs (1)
34return DesignerGlyph.SelectionPriority;
AuthoringOM\Design\Glyphs\ShadowGlyph.cs (1)
50return DesignerGlyph.LowestPriority;
AuthoringOM\Design\MessageFilters\GlyphManager.cs (16)
18public sealed class ActivityDesignerGlyphCollection : List<DesignerGlyph> 24public ActivityDesignerGlyphCollection(IEnumerable<DesignerGlyph> glyphs) 34internal DesignerGlyph this[Type type] 41DesignerGlyph glyph = null; 42foreach (DesignerGlyph designerGlyph in this) 92return DesignerGlyph.NormalPriority; 125internal static int OnComparePriority(DesignerGlyph x, DesignerGlyph y) 140private DesignerGlyph activeGlyph = null; 251foreach (DesignerGlyph glyph in GetDesignerGlyphs(designer)) 271glyphs.Sort(new Comparison<DesignerGlyph>(DesignerGlyph.OnComparePriority)); 282DesignerGlyph previousActiveGlyph = this.activeGlyph; 287DesignerGlyph newActiveGlyph = GlyphFromPoint(point, out newActiveDesigner); 329private DesignerGlyph GlyphFromPoint(Point point, out ActivityDesigner activityDesigner) 343foreach (DesignerGlyph glyph in GetDesignerGlyphs(designer))
AuthoringOM\Design\SequentialActivityDesigner.cs (4)
509private DesignerGlyph[] CreateConnectorDragDropGlyphs() 515return new DesignerGlyph[] { }; 517List<DesignerGlyph> glyphs = new List<DesignerGlyph>();