9 references to s_propOwnedForms
System.Windows.Forms (9)
System\Windows\Forms\Form.cs (9)
1613
public Form[] OwnedForms => Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms) ? ([.. ownedForms]) : ([]);
2891
if (!Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
2894
Properties.AddValue(
s_propOwnedForms
, ownedForms);
3545
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
4847
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
4875
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
5008
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
6737
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
6806
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))