10 references to s_propFormMdiParent
System.Windows.Forms (10)
System\Windows\Forms\Form.cs (10)
800
Form? formMdiParent = Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
1067
public bool IsMdiChild => Properties.ContainsKey(
s_propFormMdiParent
);
1449
get => Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
1452
Form? formMdiParent = Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
1491
Properties.AddOrRemoveValue(
s_propFormMdiParent
, value);
3158
if (Properties.TryGetValue(
s_propFormMdiParent
, out Form? formMdiParent) && formMdiParent.MdiClient != value)
3160
Properties.RemoveValue(
s_propFormMdiParent
);
3345
Form? form = Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
6940
Debug.Assert(Properties.ContainsKey(
s_propFormMdiParent
), "how is formMdiParent null?");
6943
if (Properties.TryGetValue(
s_propFormMdiParent
, out Form? formMdiParent))