4 instantiations of TipInfo
System.Windows.Forms (4)
winforms\Managed\System\WinForms\ToolTip.cs (4)
1425
TipInfo info = new
TipInfo
(caption, TipInfo.Type.Auto);
1592
tt = new
TipInfo
(text, TipInfo.Type.SemiAbsolute);
2031
tt = new
TipInfo
(text, type);
2055
tt = new
TipInfo
(text, type);
43 references to TipInfo
System.Windows.Forms (43)
winforms\Managed\System\WinForms\ToolTip.cs (43)
181
return ((
TipInfo
)this.tools[tool])?.Caption;
360
TipInfo
tt = (
TipInfo
)tools[windowControl];
361
if (tt != null && (tt.TipType &
TipInfo
.Type.SemiAbsolute) != 0)
1238
TipInfo
tt = (
TipInfo
)tools[control];
1425
TipInfo
info = new TipInfo(caption,
TipInfo
.Type.Auto);
1436
private void SetToolTipInternal(Control control,
TipInfo
info) {
1581
SetTool(win, text,
TipInfo
.Type.SemiAbsolute, p);
1590
TipInfo
tt = (
TipInfo
)tools[associatedControl];
1592
tt = new TipInfo(text,
TipInfo
.Type.SemiAbsolute);
1595
tt.TipType |=
TipInfo
.Type.SemiAbsolute;
1665
SetTool(window, text,
TipInfo
.Type.Absolute, new Point(pointX, pointY));
1691
SetTool(window, text,
TipInfo
.Type.Absolute, new Point(pointX, pointY));
1716
SetTool(window, text,
TipInfo
.Type.Absolute, new Point(pointX, pointY));
1741
SetTool(window, text,
TipInfo
.Type.Absolute, new Point(pointX, pointY));
1758
this.SetTool(tool.GetOwnerWindow(), text,
TipInfo
.Type.Absolute, new Point(pointX, pointY));
1770
TipInfo
tipInfo = (
TipInfo
)(tools[tool] ?? tools[tool.GetOwnerWindow()]);
2008
private void SetTool(IWin32Window win, string text,
TipInfo
.Type type, Point position) {
2022
if (type ==
TipInfo
.Type.Absolute || type ==
TipInfo
.Type.SemiAbsolute) {
2029
TipInfo
tt = (
TipInfo
)tools[tool];
2053
TipInfo
tt = (
TipInfo
)tools[tool];
2069
if (type ==
TipInfo
.Type.Absolute || type ==
TipInfo
.Type.SemiAbsolute) {
2201
TipInfo
tt = (
TipInfo
)tools[win];
2412
TipInfo
tt = null;
2415
tt = (
TipInfo
)tools[win];
2434
if ( (tt.TipType &
TipInfo
.Type.Auto) != 0 && window != null )
2440
if ( ((tt.TipType &
TipInfo
.Type.SemiAbsolute) != 0) && tt.Position == Point.Empty ) {
2467
else if ((tt.TipType &
TipInfo
.Type.SemiAbsolute) != 0 && tt.Position != Point.Empty) {
2507
TipInfo
tt = (
TipInfo
)tools[win];
2514
if ((tt.TipType &
TipInfo
.Type.Auto) != 0 || (tt.TipType &
TipInfo
.Type.SemiAbsolute) != 0) {
2522
if ((tt.TipType &
TipInfo
.Type.Auto) == 0) {
2539
tt.TipType =
TipInfo
.Type.Auto;