6 references to s_formStateAllowTransparency
System.Windows.Forms (6)
System\Windows\Forms\Form.cs (6)
60
private static readonly BitVector32.Section s_formStateBorderStyle = BitVector32.CreateSection(6,
s_formStateAllowTransparency
);
180
Debug.Assert(_formState[
s_formStateAllowTransparency
] == 0, "Failed to set formState[FormStateAllowTransparency]");
357
get => _formState[
s_formStateAllowTransparency
] != 0;
360
if (value == (_formState[
s_formStateAllowTransparency
] != 0))
365
_formState[
s_formStateAllowTransparency
] = value ? 1 : 0;
367
_formState[s_formStateLayered] = _formState[
s_formStateAllowTransparency
];