2 writes to TransparencyKey
System.Windows.Forms (2)
System\Windows\Forms\Form.cs (1)
5030private void ResetTransparencyKey() => TransparencyKey = Color.Empty;
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
318set => 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 5993return !TransparencyKey.Equals(Color.Empty); 6143Color transparencyKey = TransparencyKey;
System\Windows\Forms\Printing\PrintPreviewDialog.cs (1)
317get => base.TransparencyKey;