public EncloseElementInEllipse()
        {
            Title = "Enclose Element in Ellipse";

            EllipseWithChild elips = new EllipseWithChild();
            elips.Fill = Brushes.ForestGreen;
            elips.Stroke = new Pen(Brushes.Magenta, 48);
            Content = elips;

            TextBlock text = new TextBlock();
            text.FontFamily = new FontFamily("Times New Roman");
            text.FontSize = 48;
            text.Text = "Text inside ellipse";

            elips.Child = text;
        }
Example #2
0
        public EncloseElementInEllipse()
        {
            Title = "Enclose Element in Ellipse";

            EllipseWithChild elips = new EllipseWithChild();

            elips.Fill   = Brushes.ForestGreen;
            elips.Stroke = new Pen(Brushes.Magenta, 48);
            Content      = elips;

            TextBlock text = new TextBlock();

            text.FontFamily = new FontFamily("Times New Roman");
            text.FontSize   = 48;
            text.Text       = "Text inside ellipse";

            elips.Child = text;
        }