2 instantiations of ControlInformation
System.Windows.Forms (2)
winforms\Managed\System\WinForms\TableLayoutSettings.cs (2)
452ControlInformation controlInfo = new ControlInformation(); 498private static ControlInformation DefaultControlInfo = new ControlInformation(null, -1, -1, 1, 1);
20 references to ControlInformation
System.Windows.Forms (20)
winforms\Managed\System\WinForms\TableLayoutSettings.cs (19)
442internal List<ControlInformation> GetControlsInformation() { 447List<ControlInformation> controlsInfo = new List<ControlInformation>(Owner.Children.Count); 452ControlInformation controlInfo = new ControlInformation(); 498private static ControlInformation DefaultControlInfo = new ControlInformation(null, -1, -1, 1, 1); 501private Dictionary<object, ControlInformation> controlsInfo; 525ControlInformation controlInfo = controlsInfo[controlName]; 591internal List<ControlInformation> GetControlsInformation() { 594return new List<ControlInformation>(); 597List<ControlInformation> listOfControlInfo = new List<ControlInformation>(controlsInfo.Count); 599ControlInformation ci = controlsInfo[name]; 606private ControlInformation GetControlInformation(object controlName) { 631private void SetControlInformation(object controlName, ControlInformation info) { 633controlsInfo = new Dictionary<object, ControlInformation>(); 640ControlInformation info = GetControlInformation(controlName); 648ControlInformation info = GetControlInformation(controlName); 655ControlInformation info = GetControlInformation(controlName); 662ControlInformation info = GetControlInformation(controlName);
winforms\Managed\System\WinForms\TableLayoutSettingsTypeConverter.cs (1)
83foreach (TableLayoutSettings.ControlInformation c in tableLayoutSettings.GetControlsInformation()) {