Example #1
0
        public RenderTheGraphic()
        {
            Title = "Render the Graphic";              //Задаем заголовок окна
            SimpleEllipse elips = new SimpleEllipse(); //Создаем экземпляр нашего эллипса

            Content = elips;                           // Задаем содержимое окна
        }
Example #2
0
        public RenderTheGraphic()
        {
            Title = "Render The Graphic";
            SimpleEllipse elips = new SimpleEllipse();

            Content = elips;
        }
        public RenderTheGraphic()
        {
            Title = "Render the Graphic";

            SimpleEllipse elips = new SimpleEllipse();
            Content = elips;
        }
        public RenderTheGraphic()
        {
            Title = "Render the Graphic";

            SimpleEllipse elips = new SimpleEllipse();

            //elips.HorizontalAlignment = System.Windows.HorizontalAlignment.Center;
            //elips.VerticalAlignment = System.Windows.VerticalAlignment.Center;

            //elips.Width = 26;
            //elips.Height = 26;

            Content = elips;
        }
 public ReplaceMainWindow()
 {
     Title = "Render The Graphic";
     SimpleEllipse ellipse = new SimpleEllipse();
     Content = ellipse;
 }