9 references to s_propOwnedForms
System.Windows.Forms (9)
System\Windows\Forms\Form.cs (9)
1614
public Form[] OwnedForms => Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms) ? ([.. ownedForms]) : ([]);
2906
if (!Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
2909
Properties.AddValue(
s_propOwnedForms
, ownedForms);
3560
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
4862
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
4890
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
5025
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
6726
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
6795
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))