Exemplo n.º 1
0
 public DebuggerPopup(DebuggerTooltipControl parentControl, TextLocation logicalPosition, bool showPins = true)
 {
     this.contentControl = new DebuggerTooltipControl(parentControl, logicalPosition, showPins);
     this.contentControl.containingPopup = this;
     this.Child = this.contentControl;
     this.IsLeaf = false;
 }
Exemplo n.º 2
0
 public DebuggerPopup(DebuggerTooltipControl parentControl, TextLocation logicalPosition, bool showPins = true)
 {
     this.contentControl = new DebuggerTooltipControl(parentControl, logicalPosition, showPins);
     this.contentControl.containingPopup = this;
     this.Child  = this.contentControl;
     this.IsLeaf = false;
 }
Exemplo n.º 3
0
        public DebuggerPopup(DebuggerTooltipControl parentControl, AstLocation logicalPosition, bool showPins = true)
        {
            this.contentControl = new DebuggerTooltipControl(parentControl, logicalPosition, showPins);
            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;
        }
Exemplo n.º 4
0
		public DebuggerPopup(DebuggerTooltipControl parentControl, TextLocation logicalPosition, bool showPins = true)
		{
			this.contentControl = new DebuggerTooltipControl(parentControl, logicalPosition, showPins);
			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, AstLocation logicalPosition, bool showPins = false)
     : this(logicalPosition)
 {
     this.parentControl = parentControl;
     this.showPins      = showPins;
 }
		public DebuggerTooltipControl(DebuggerTooltipControl parentControl, AstLocation logicalPosition, bool showPins = false)
			: this(logicalPosition)
		{
			this.parentControl = parentControl;
			this.showPins = showPins;
		}