9 references to s_propOwnedForms
System.Windows.Forms (9)
System\Windows\Forms\Form.cs (9)
1616
public Form[] OwnedForms => Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms) ? ([.. ownedForms]) : ([]);
2894
if (!Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
2897
Properties.AddValue(
s_propOwnedForms
, ownedForms);
3548
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
4863
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
4891
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
5024
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
6752
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
6821
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))