Inheritance: WebMarco.Frontend.Common.BaseRectangle
Example #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))) {

        }
Example #2
0
 public MainWindow(Rectangle frame) : base(frame) { }