10 references to s_propFormMdiParent
System.Windows.Forms (10)
System\Windows\Forms\Form.cs (10)
803
Form? formMdiParent = Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
1070
public bool IsMdiChild => Properties.ContainsKey(
s_propFormMdiParent
);
1452
get => Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
1455
Form? formMdiParent = Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
1494
Properties.AddOrRemoveValue(
s_propFormMdiParent
, value);
3161
if (Properties.TryGetValue(
s_propFormMdiParent
, out Form? formMdiParent) && formMdiParent.MdiClient != value)
3163
Properties.RemoveValue(
s_propFormMdiParent
);
3348
Form? form = Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
6955
Debug.Assert(Properties.ContainsKey(
s_propFormMdiParent
), "how is formMdiParent null?");
6958
if (Properties.TryGetValue(
s_propFormMdiParent
, out Form? formMdiParent))