1 instantiation of ControlInformation
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.TableLayoutSettingsStub.cs (1)
13private static ControlInformation s_defaultControlInfo = new(null, -1, -1, 1, 1);
16 references to ControlInformation
System.Windows.Forms (16)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (3)
489internal List<ControlInformation> GetControlsInformation() 497List<ControlInformation> controlsInfo = new(Owner!.Children.Count); 508ControlInformation controlInfo = default;
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.TableLayoutSettingsStub.cs (12)
13private static ControlInformation s_defaultControlInfo = new(null, -1, -1, 1, 1); 16private Dictionary<object, ControlInformation>? _controlsInfo; 39ControlInformation controlInfo = _controlsInfo[controlName]; 81internal List<ControlInformation> GetControlsInformation() 88List<ControlInformation> listOfControlInfo = new(_controlsInfo.Count); 91ControlInformation ci = _controlsInfo[name]; 99private ControlInformation GetControlInformation(object controlName) 117private void SetControlInformation(object controlName, ControlInformation info) 127ControlInformation info = GetControlInformation(controlName); 137ControlInformation info = GetControlInformation(controlName); 147ControlInformation info = GetControlInformation(controlName); 157ControlInformation info = GetControlInformation(controlName);
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettingsTypeConverter.cs (1)
74foreach (TableLayoutSettings.ControlInformation c in tableLayoutSettings.GetControlsInformation())