GetDlgItem

[DllImport("user32.dll", SetLastError = true)]
public static extern IntPtr GetDlgItem(
   IntPtr hDlg,
   int nIDDlgItem
);

Microsoft documentation: Link

Last updated