2 writes to TransparencyKey
System.Windows.Forms (2)
System\Windows\Forms\Form.cs (1)
5030
private void ResetTransparencyKey() =>
TransparencyKey
= Color.Empty;
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
318
set => base.
TransparencyKey
= value;
5 references to TransparencyKey
System.Windows.Forms (5)
System\Windows\Forms\Form.cs (4)
1589
_formState[s_formStateLayered] = (
TransparencyKey
!= Color.Empty) ? 1 : 0;
5987
/// Indicates whether the <see cref="
TransparencyKey
"/> property should be
5993
return !
TransparencyKey
.Equals(Color.Empty);
6143
Color transparencyKey =
TransparencyKey
;
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
317
get => base.
TransparencyKey
;