10 references to s_propFormMdiParent
System.Windows.Forms (10)
System\Windows\Forms\Form.cs (10)
804
Form? formMdiParent = Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
1074
public bool IsMdiChild => Properties.ContainsKey(
s_propFormMdiParent
);
1456
get => Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
1459
Form? formMdiParent = Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
1498
Properties.AddOrRemoveValue(
s_propFormMdiParent
, value);
3098
if (Properties.TryGetValue(
s_propFormMdiParent
, out Form? formMdiParent) && formMdiParent.MdiClient != value)
3100
Properties.RemoveValue(
s_propFormMdiParent
);
3285
Form? form = Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
6833
Debug.Assert(Properties.ContainsKey(
s_propFormMdiParent
), "how is formMdiParent null?");
6836
if (Properties.TryGetValue(
s_propFormMdiParent
, out Form? formMdiParent))