To set the properties of a control in a form

Source: Internet
Author: User

With reflection, you can get all the controls in the current form and set their properties as needed.

Font Defaultfont =NewSystem.Drawing.Font ("Microsoft Sans Serif", 8.25F);//Find all controls, set to the same fontIteratecontrols ( This. Controls,typeof(Foundation.WinUI.Misc.Label));foreach(Control Ctrlinchgrids) {Ctrl. Font = Defaultfont;} grids =NewList<control> (); Iteratecontrols ( This. Controls,typeof(Foundation.WinUI.Misc.TabControl));foreach(Control CtrlinchGrids) {foreach(Ultratab tabinch(Ctrl asFoundation.WinUI.Misc.TabControl). Tabs) {tab.         Appearance.FontData.Name = Defaultfont.name; tab.    Appearance.FontData.SizeInPoints = defaultfont.sizeinpoints; }}grids =NewList<control> (); Iteratecontrols ( This. Controls,typeof(Foundation.WinUI.Editors.CheckBoxEditor));foreach(Control Ctrlinchgrids) {Ctrl. Font = Defaultfont;}

Gets the method for the specified type of control:

Private void Iteratecontrols (Control.controlcollection controls, type type) {        foreach in controls)        {                if (child. GetType () = = type)                    grids. ADD (child);                if (Child. HasChildren)                    iteratecontrols (child. Controls, type);}         }

The code comes from StackOverflow.

To set the properties of a control in a form

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.