Exemplo n.º 1
0
 public Element(Style.WidthHeight wh)
 {
     if (wh == null)
     {
         throw new ArgumentNullException("wh");
     }
     _width  = wh.Width;
     _height = wh.Height;
 }
Exemplo n.º 2
0
 public Group(Style.WidthHeight wh) : base(wh)
 {
 }