Example #1
0
 public static TooltipManager GetInstance()
 {
     if (instance == null)
     {
         instance = new TooltipManager();
     }
     return(instance);
 }
Example #2
0
        public Tooltip(Element contents, Element targetElement)
        {
            _manager = TooltipManager.GetInstance();

            _container = new Container(contents);
            _container.SetOrigin(AlignInternal.Center);
            _targetElement = targetElement;
            _container.SetTouchable(Touchable.Disabled);
        }
Example #3
0
		static public TooltipManager getInstance()
		{
			if( instance == null )
				instance = new TooltipManager();
			return instance;
		}