|
Annotations = new ObservableCollection<DiagramNodeAnnotation>()
{
new DiagramNodeAnnotation()
{
Content = "Process\r\nManager",
Offset = new NodeAnnotationOffset() { X = 0, Y = 0},
HorizontalAlignment = HorizontalAlignment.Left,
VerticalAlignment = VerticalAlignment.Top,
Style = new AnnotationStyle() { Bold = true, FontFamily = "Comic Sans MS", FontSize = 24 }
}
} |
|
Annotations = new ObservableCollection<DiagramNodeAnnotation>()
{
new DiagramNodeAnnotation()
{
Content = "Process\r\nManager",
Offset = new NodeAnnotationOffset() { X = 0, Y = 0},
Margin = new NodeAnnotationMargin() { Left = 10, Top = 10},
HorizontalAlignment = HorizontalAlignment.Left,
VerticalAlignment = VerticalAlignment.Top,
Style = new AnnotationStyle() { Bold = true, FontFamily = "Comic Sans MS", FontSize = 24 }
}
}
}; |