9 references to s_propOwnedForms
System.Windows.Forms (9)
System\Windows\Forms\Form.cs (9)
1617
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);
3566
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
4865
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
4893
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
5028
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
6721
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
6790
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))