1 write to _toolTip
System.Windows.Forms.Tests (1)
System\Windows\Forms\PropertyGridInternal\GridToolTipTests.cs (1)
15_toolTip = new(_controls);
21 references to _toolTip
System.Windows.Forms.Tests (21)
System\Windows\Forms\PropertyGridInternal\GridToolTipTests.cs (21)
25_toolTip.Dispose(); 31_toolTip.ToolTip = "Test tooltip"; 33_toolTip.ToolTip.Should().Be("Test tooltip"); 35_toolTip.ToolTip = "Another tooltip"; 37_toolTip.ToolTip.Should().Be("Another tooltip"); 43_toolTip.ToolTip = null; 45_toolTip.ToolTip.Should().BeNull(); 51_toolTip.ToolTip = string.Empty; 53_toolTip.ToolTip.Should().BeEmpty(); 59_toolTip.ToolTip = new('a', MaximumToolTipLength + 5); 61_toolTip.ToolTip.Should().EndWith("..."); 62_toolTip.ToolTip.Length.Should().Be(MaximumToolTipLength + 3); 64_toolTip.ToolTip = new('b', MaximumToolTipLength); 66_toolTip.ToolTip.Should().NotEndWith("..."); 67_toolTip.ToolTip.Length.Should().Be(MaximumToolTipLength); 73_toolTip.ToolTip = "abc"; 74_toolTip.Reset(); 76_toolTip.ToolTip.Should().Be("abc"); 88form.Controls.Add(_toolTip); 90_toolTip.IsHandleCreated.Should().BeFalse(); 94_toolTip.IsHandleCreated.Should().BeTrue();