9 references to s_propOwnedForms
System.Windows.Forms (9)
System\Windows\Forms\Form.cs (9)
1620
public Form[] OwnedForms => Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms) ? ([.. ownedForms]) : ([]);
2831
if (!Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
2834
Properties.AddValue(
s_propOwnedForms
, ownedForms);
3491
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
4806
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
4834
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
4934
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
6630
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))
6699
if (Properties.TryGetValue(
s_propOwnedForms
, out List<Form>? ownedForms))