16 references to FormCornerPreference
System.Windows.Forms (16)
System\Windows\Forms\Controls\ToolStrips\ToolStripRenderer.cs (2)
1136
FormCornerPreference
.Round => 4,
1137
FormCornerPreference
.RoundSmall => 3,
System\Windows\Forms\Form.cs (14)
2259
[DefaultValue(
FormCornerPreference
.Default)]
2265
public
FormCornerPreference
FormCornerPreference
2267
get => Properties.GetValueOrDefault(s_propFormCornerPreference,
FormCornerPreference
.Default);
2277
FormCornerPreference
.Default => value,
2278
FormCornerPreference
.DoNotRound => value,
2279
FormCornerPreference
.Round => value,
2280
FormCornerPreference
.RoundSmall => value,
2284
Properties.AddOrRemoveValue(s_propFormCornerPreference, value, defaultValue:
FormCornerPreference
.Default);
2312
private unsafe void SetFormCornerPreferenceInternal(
FormCornerPreference
cornerPreference)
2317
FormCornerPreference
.Default => DWM_WINDOW_CORNER_PREFERENCE.DWMWCP_DEFAULT,
2318
FormCornerPreference
.DoNotRound => DWM_WINDOW_CORNER_PREFERENCE.DWMWCP_DONOTROUND,
2319
FormCornerPreference
.Round => DWM_WINDOW_CORNER_PREFERENCE.DWMWCP_ROUND,
2320
FormCornerPreference
.RoundSmall => DWM_WINDOW_CORNER_PREFERENCE.DWMWCP_ROUNDSMALL,
5002
if (Properties.TryGetValue(s_propFormCornerPreference, out
FormCornerPreference
? cornerPreference))