public CaptionDecorator(DecoratorContext context, IDecorator parent = null) { this.context = context; this.caption = new Caption(context.shape.GetParent()); caption.SetText(context.captionText); this.parent = parent; context.MainWindow.canvas.Children.Add(caption.GetTextBox()); }