Exemplo n.º 1
0
 public static TooltipManager GetInstance()
 {
     if (instance == null)
     {
         instance = new TooltipManager();
     }
     return(instance);
 }
Exemplo n.º 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);
        }
Exemplo n.º 3
0
		static public TooltipManager getInstance()
		{
			if( instance == null )
				instance = new TooltipManager();
			return instance;
		}