1 write to Value
System.Windows.Forms.Primitives (1)
Windows.Win32.HTHEME.g.cs (1)
29 internal HTHEME(IntPtr value) => this.Value = value;
8 references to Value
System.Windows.Forms.Primitives (8)
Windows.Win32.HTHEME.g.cs (8)
33 internal bool IsNull => Value == default; 35 public static implicit operator IntPtr(HTHEME value) => value.Value; 39 public static bool operator ==(HTHEME left, HTHEME right) => left.Value == right.Value; 43 public bool Equals(HTHEME other) => this.Value == other.Value; 47 public override int GetHashCode() => this.Value.GetHashCode(); 49 public override string ToString() => $"0x{this.Value:x}";