23 references to SendMessage
System.Private.Windows.Core (7)
Windows\Win32\PInvokeCore.SendMessage.cs (7)
8/// <inheritdoc cref="SendMessage(HWND, uint, WPARAM, LPARAM)"/> 15LRESULT result = SendMessage(hWnd.Handle, (uint)Msg, wParam, lParam); 20/// <inheritdoc cref="SendMessage(HWND, uint, WPARAM, LPARAM)"/> 27LRESULT result = SendMessage(hWnd.Handle, (uint)Msg, (WPARAM)wParam.Handle, lParam); 32/// <inheritdoc cref="SendMessage(HWND, uint, WPARAM, LPARAM)"/> 45/// <inheritdoc cref="SendMessage(HWND, uint, WPARAM, LPARAM)"/> 60/// <inheritdoc cref="SendMessage(HWND, uint, WPARAM, LPARAM)"/>
System.Windows.Forms (9)
System\Windows\Forms\Control.cs (2)
11760m.ResultInternal = PInvokeCore.SendMessage( 11767PInvokeCore.SendMessage(
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (1)
30039PInvokeCore.SendMessage(nmhdr->hwndFrom, PInvoke.TTM_SETMAXTIPWIDTH, 0, SystemInformation.MaxWindowTrackSize.Width);
System\Windows\Forms\Controls\ListView\ListView.cs (1)
6883PInvokeCore.SendMessage(nmhdr->hwndFrom, PInvoke.TTM_SETMAXTIPWIDTH, (WPARAM)0, (LPARAM)SystemInformation.MaxWindowTrackSize.Width);
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (1)
1821PInvokeCore.SendMessage(HWND, PInvoke.MCM_SETDAYSTATE, (WPARAM)monthsCount, (LPARAM)arr);
System\Windows\Forms\Controls\TabControl\TabControl.cs (1)
2118PInvokeCore.SendMessage(nmhdr->hwndFrom, PInvoke.TTM_SETMAXTIPWIDTH, 0, SystemInformation.MaxWindowTrackSize.Width);
System\Windows\Forms\Controls\TreeView\TreeView.cs (1)
3207PInvokeCore.SendMessage(nmhdr->hwndFrom, PInvoke.TTM_SETMAXTIPWIDTH, 0, SystemInformation.MaxWindowTrackSize.Width);
System\Windows\Forms\Dialogs\CommonDialogs\FolderBrowserDialog.cs (1)
518PInvokeCore.SendMessage(hwnd, PInvoke.BFFM_ENABLEOK, 0, (nint)(BOOL)isFileSystemFolder);
System\Windows\Forms\Dialogs\TaskDialog\TaskDialog.cs (1)
1667PInvokeCore.SendMessage(
System.Windows.Forms.Design (7)
System\ComponentModel\Design\CollectionEditor.FilterListBox.cs (3)
69PInvokeCore.SendMessage(PInvoke.GetFocus(), PInvokeCore.WM_KEYDOWN, _lastKeyDown.WParamInternal, _lastKeyDown.LParamInternal); 97PInvokeCore.SendMessage(hwnd, PInvokeCore.WM_KEYDOWN, _lastKeyDown.WParamInternal, _lastKeyDown.LParamInternal); 98PInvokeCore.SendMessage(hwnd, PInvokeCore.WM_CHAR, m.WParamInternal, m.LParamInternal);
System\ComponentModel\Design\ObjectSelectorEditor.cs (1)
70PInvokeCore.SendMessage(hwnd, PInvoke.TVM_SETEXTENDEDSTYLE, (WPARAM)0, (LPARAM)exstyle);
System\Windows\Forms\Design\PbrsForward.cs (3)
105PInvokeCore.SendMessage(hwnd, PInvokeCore.WM_KEYDOWN, bk.KeyDown.WParamInternal, bk.KeyDown.LParamInternal); 108PInvokeCore.SendMessage(hwnd, PInvokeCore.WM_CHAR, bk.KeyChar.WParamInternal, bk.KeyChar.LParamInternal); 111PInvokeCore.SendMessage(hwnd, PInvokeCore.WM_KEYUP, bk.KeyUp.WParamInternal, bk.KeyUp.LParamInternal);