8 references to MAKELPARAM
System.Private.Windows.Core (1)
Windows\Win32\Foundation\LPARAM.cs (1)
28public static explicit operator LPARAM(Point value) => MAKELPARAM(value.X, value.Y);
System.Windows.Forms (5)
System\Windows\Forms\ActiveX\AxHost.cs (1)
1764lParam = LPARAM.MAKELPARAM(
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
3247PInvokeCore.SendMessage(this, PInvoke.CB_SETEDITSEL, (WPARAM)0, LPARAM.MAKELPARAM(start, end));
System\Windows\Forms\Controls\ListView\ListView.cs (2)
5349PInvokeCore.SendMessage(this, PInvoke.LVM_SETCOLUMNWIDTH, (WPARAM)columnIndex, LPARAM.MAKELPARAM(width, 0)); 5372PInvokeCore.SendMessage(this, PInvoke.LVM_SETCOLUMNWIDTH, (WPARAM)index, LPARAM.MAKELPARAM(width, 0));
System\Windows\Forms\Dialogs\TaskDialog\TaskDialog.cs (1)
783LPARAM.MAKELPARAM(min, max));
System.Windows.Forms.Tests (2)
System\Windows\Forms\RichTextBoxTests.cs (1)
10532PInvokeCore.SendMessage(control, PInvokeCore.EM_SETMARGINS, (WPARAM)(PInvoke.EC_LEFTMARGIN | PInvoke.EC_RIGHTMARGIN), LPARAM.MAKELPARAM(1, 2));
TextBoxBaseTests.cs (1)
7653LPARAM.MAKELPARAM(1, 2));