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