Example #1
0
 public SizeWF(float width, float height, ISizableF theFather)
 {
     mySize = new SizeF(width, height);
     father = theFather;
     ChangeSize();
 }
Example #2
0
 //-------------------------------------------------
 #region Constructor's Region
 public SizeWF(ISizableF theFather)
 {
     mySize = new SizeF(0, 0);
     father = theFather;
     ChangeSize();
 }