32 references to GetToolTip
System.Windows.Forms (8)
System\Windows\Forms\Controls\ListView\ListView.cs (1)
5369_toolTipCaption = toolTip.GetToolTip(this);
System\Windows\Forms\Controls\TabControl\TabControl.cs (1)
1633_controlTipText = toolTip.GetToolTip(this);
System\Windows\Forms\Controls\TreeView\TreeView.cs (1)
1626_controlToolTipText = toolTip.GetToolTip(this);
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (2)
986string? caption = toolTip.GetToolTip(this); 998string? caption = toolTip.GetToolTip(this);
System\Windows\Forms\ToolTip\ToolTip.cs (3)
845string? caption = GetToolTip(control); 1753SetToolInfo(tool, GetToolTip(tool)); 2343GetToolTip(control),
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\InheritanceUI.cs (1)
88&& !string.IsNullOrEmpty(_toolTip.GetToolTip(c)))
System.Windows.Forms.Design.Tests (10)
System\Windows\Forms\Design\InheritanceUITests.cs (10)
113toolTip.GetToolTip(_control).Should().Be(expectedText); 114toolTip.GetToolTip(_childControl).Should().Be(expectedText); 124toolTip.GetToolTip(_control).Should().Be("Inherited control"); 125toolTip.GetToolTip(_childControl).Should().Be("Inherited control"); 126toolTip.GetToolTip(_sitedChildControl).Should().BeEmpty(); 130toolTip.GetToolTip(_control).Should().BeEmpty(); 131toolTip.GetToolTip(_childControl).Should().BeEmpty(); 132toolTip.GetToolTip(_sitedChildControl).Should().BeEmpty(); 158toolTip.GetToolTip(_control).Should().BeEmpty(); 159toolTip.GetToolTip(_sitedChildControl).Should().BeEmpty();
System.Windows.Forms.Tests (13)
System\Windows\Forms\ToolTipTests.cs (7)
644Assert.Empty(toolTip.GetToolTip(control)); 654Assert.Empty(toolTip.GetToolTip(control)); 657Assert.Empty(toolTip.GetToolTip(control)); 675Assert.Equal(expected, toolTip.GetToolTip(control)); 679Assert.Equal(expected, toolTip.GetToolTip(control)); 696Assert.Equal(expected, toolTip.GetToolTip(control)); 700Assert.Equal(expected, toolTip.GetToolTip(control));
System\Windows\Forms\UpDownBaseTests.cs (6)
3021string actualEditToolTipText = toolTip.GetToolTip(upDownBase._upDownEdit); 3022string actualButtonsToolTipText = toolTip.GetToolTip(upDownBase._upDownButtons); 3030actualEditToolTipText = toolTip.GetToolTip(upDownBase._upDownEdit); 3031actualButtonsToolTipText = toolTip.GetToolTip(upDownBase._upDownButtons); 3037actualEditToolTipText = toolTip.GetToolTip(upDownBase._upDownEdit); 3038actualButtonsToolTipText = toolTip.GetToolTip(upDownBase._upDownButtons);