10 references to s_propFormMdiParent
System.Windows.Forms (10)
System\Windows\Forms\Form.cs (10)
801
Form? formMdiParent = Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
1068
public bool IsMdiChild => Properties.ContainsKey(
s_propFormMdiParent
);
1450
get => Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
1453
Form? formMdiParent = Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
1492
Properties.AddOrRemoveValue(
s_propFormMdiParent
, value);
3173
if (Properties.TryGetValue(
s_propFormMdiParent
, out Form? formMdiParent) && formMdiParent.MdiClient != value)
3175
Properties.RemoveValue(
s_propFormMdiParent
);
3360
Form? form = Properties.GetValueOrDefault<Form>(
s_propFormMdiParent
);
6929
Debug.Assert(Properties.ContainsKey(
s_propFormMdiParent
), "how is formMdiParent null?");
6932
if (Properties.TryGetValue(
s_propFormMdiParent
, out Form? formMdiParent))