27 references to Owner
System.Windows.Forms (27)
winforms\Managed\System\WinForms\FlowLayoutSettings.cs (4)
30get { return FlowLayout.GetFlowDirection(Owner); } 32FlowLayout.SetFlowDirection(Owner, value); 42get { return FlowLayout.GetWrapContents(Owner); } 44FlowLayout.SetWrapContents(Owner, value);
winforms\Managed\System\WinForms\TableLayoutSettings.cs (23)
86TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 88LayoutTransaction.DoLayout(Owner, Owner, PropertyNames.CellBorderStyle); 95get { return TableLayout.GetContainerInfo(Owner).CellBorderWidth; } 109TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 116TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 118LayoutTransaction.DoLayout(Owner, Owner, PropertyNames.Columns); 135TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 142TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 144LayoutTransaction.DoLayout(Owner, Owner, PropertyNames.Rows); 160TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 176TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 193return TableLayout.GetContainerInfo(Owner).GrowStyle; 202TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(Owner); 205LayoutTransaction.DoLayout(Owner, Owner, PropertyNames.GrowStyle); 423return TableLayout.GetControlFromPosition(Owner, column, row); 427return TableLayout.GetPositionFromControl(Owner, element); 447List<ControlInformation> controlsInfo = new List<ControlInformation>(Owner.Children.Count); 449foreach (IArrangedElement element in Owner.Children) { 518TableLayout.ContainerInfo containerInfo = TableLayout.GetContainerInfo(settings.Owner);