ZForge.SA.Komponent.SAPreference.UpdateUI C# (CSharp) Method

UpdateUI() public method

public UpdateUI ( System p ) : void
p System
return void
        public virtual void UpdateUI(System.Windows.Forms.Control p)
        {
            Font ft = SystemFonts.MessageBoxFont;
            this.UpdateUI(p, ft);
        }

Same methods

SAPreference::UpdateUI ( System p, Font ft ) : void

Usage Example

Esempio n. 1
0
        public SAAboutForm(SAPreference pref)
        {
            this.Product = pref.ProductName;
            this.Version = pref.Version;
            this.Company = pref.Company;
            this.URL     = pref.URL;

            pref.UpdateUI(this);
        }
All Usage Examples Of ZForge.SA.Komponent.SAPreference::UpdateUI