Exemple #1
0
 internal UIBaseComponent()
 {
     BackgroundColor = new Color (1.0f, 1.0f, 1.0f, 0.0f);
      UserInteractionEnabled = true;
      Visible = true;
      Alpha = 1.0f;
      ParentComponent = null;
      components = new List<UIBaseComponent>();
      Components = new UIBaseComponentList(components);
 }
Exemple #2
0
 internal UIBaseComponent()
 {
     BackgroundColor        = new Color(1.0f, 1.0f, 1.0f, 0.0f);
     UserInteractionEnabled = true;
     Visible         = true;
     Alpha           = 1.0f;
     ParentComponent = null;
     components      = new List <UIBaseComponent>();
     Components      = new UIBaseComponentList(components);
 }