Esempio n. 1
0
        protected void RemoveLayoutInformationForChild(Control child)
        {
            LayoutInformation layoutInformation = LayoutInformation.FirstOrDefault(li => li.Control == child);

            if (layoutInformation == null)
            {
                return;
            }
            LayoutInformation.Remove(layoutInformation);
        }