示例#1
0
		public DebuggerPopup(DebuggerTooltipControl parentControl)
		{
			this.contentControl = new DebuggerTooltipControl(parentControl);
			this.contentControl.containingPopup = this;
			this.Child = this.contentControl;
			this.IsLeaf = false;
			
			//this.KeyDown += new KeyEventHandler(DebuggerPopup_KeyDown);

			//this.contentControl.Focusable = true;
			//Keyboard.Focus(this.contentControl);
			//this.AllowsTransparency = true;
			//this.PopupAnimation = PopupAnimation.Slide;
		}
		public DebuggerTooltipControl(DebuggerTooltipControl parentControl)
			: this()
		{
			this.parentControl = parentControl;
		}