Beispiel #1
0
 public PopUpButton(
     IUIElementConstArg arg
     ) : base(
         arg
         )
 {
 }
 public UIElement(IUIElementConstArg arg)
 {
     thisUIM                 = arg.uim;
     thisProcessFactory      = arg.processFactory;
     thisUIElementFactory    = arg.uiElementFactory;
     thisUIA                 = arg.uia;
     thisImage               = arg.image;
     thisSelectabilityEngine = new SelectabilityStateEngine(
         thisImage,
         thisUIM
         );
     if (arg.activationMode == ActivationMode.Alpha)
     {
         thisUIA.SetUpCanvasGroupComponent();
     }
     thisUIEActivationStateEngine = new UIEActivationStateEngine(
         thisProcessFactory,
         this,
         arg.activationMode
         );
     /* move this to SetUpUIEReference */
     thisProximateParentScroller = FindProximateParentScroller();
 }
Beispiel #3
0
 public EquipToolUIE(IUIElementConstArg arg) : base(arg)
 {
 }
Beispiel #4
0
 public AbsIconPanel(IUIElementConstArg arg) : base(arg)
 {
 }