2 instantiations of ATOM
System.Windows.Forms.Primitives (2)
Windows\Win32\Foundation\ATOM.cs (2)
22
public static ATOM Null { get; } =
new
(0);
27
public static implicit operator ATOM(IntPtr atom) =>
new
((ushort)atom);
5 references to ATOM
System.Windows.Forms.Primitives (3)
Windows\Win32\Foundation\ATOM.cs (3)
22
public static
ATOM
Null { get; } = new(0);
26
public static implicit operator uint(
ATOM
atom) => atom.Value;
27
public static implicit operator
ATOM
(IntPtr atom) => new((ushort)atom);
System.Windows.Forms.Primitives.TestUtilities (2)
Win32\WindowClass.cs (2)
21
public
ATOM
Atom { get; private set; }
115
ATOM
atom = PInvoke.RegisterClass(in _wndClass);