Inheritance: WebMarco.Frontend.Common.BaseRectangle
Exemplo n.º 1
0
        public BaseWindow(Rectangle frame) :
            base(new System.Drawing.RectangleF(
                (float)(frame.TopLeft.X),
                (float)(frame.TopLeft.Y),
                (float)(frame.Width),
                (float)(frame.Height))) {

        }
Exemplo n.º 2
0
 public MainWindow(Rectangle frame) : base(frame) { }