示例#1
0
文件: View.cs 项目: dsmo7206/Lemma
		private void ShowToolTip()
		{
			RemoveToolTip();
			this.ToolTipView = new ToolTip(ParentGeeUI, ParentGeeUI.RootView, this, this._toolTipText);
		}
示例#2
0
文件: View.cs 项目: dsmo7206/Lemma
		public void RemoveToolTip()
		{
			_toolTipTimer = 0f;
			if (this.ToolTipView != null)
			{
				this.ToolTipView.RemoveFromParent();
				this.ToolTipView = null;
			}
		}