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))
5042
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
6770
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
6839
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))