5 implementations of GetOwnerWindow
System.Windows.Forms (5)
System\Windows\Forms\Control.cs (1)
12698IWin32Window IKeyboardToolTip.GetOwnerWindow() => this;
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (1)
339IWin32Window? IKeyboardToolTip.GetOwnerWindow() => DataGridView;
System\Windows\Forms\Controls\ListView\ListViewItem.IKeyboardToolTip.cs (1)
64IWin32Window? IKeyboardToolTip.GetOwnerWindow() => _listView;
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
3603IWin32Window IKeyboardToolTip.GetOwnerWindow()
System\Windows\Forms\Controls\TreeView\TreeNode.IKeyboardToolTip.cs (1)
39IWin32Window? IKeyboardToolTip.GetOwnerWindow() => TreeView;
2 references to GetOwnerWindow
System.Windows.Forms (2)
System\Windows\Forms\ToolTip\ToolTip.cs (2)
125IWin32Window? ownerWindow = currentTool.GetOwnerWindow(); 1484var ownerWindow = tool.GetOwnerWindow();