UpdateUI() public method

public UpdateUI ( System p ) : void
p System
return void
コード例 #1
0
ファイル: SAAboutForm.cs プロジェクト: unixcrh/Motion
        public SAAboutForm(SAPreference pref)
        {
            this.Product = pref.ProductName;
            this.Version = pref.Version;
            this.Company = pref.Company;
            this.URL     = pref.URL;

            pref.UpdateUI(this);
        }
コード例 #2
0
ファイル: SAAboutForm.cs プロジェクト: zhuangyy/Motion
        public SAAboutForm(SAPreference pref)
        {
            this.Product = pref.ProductName;
            this.Version = pref.Version;
            this.Company = pref.Company;
            this.URL = pref.URL;

            pref.UpdateUI(this);
        }
コード例 #3
0
        public SARegisterForm(SAPreference pref, List <SALicense> lics)
        {
            InitializeComponent();
            this.Text = Translator.Instance.T("зЂВс...");

            this.Preference       = pref;
            this.LicenseInstances = lics;

            pref.UpdateUI(this);
        }
コード例 #4
0
ファイル: SARegisterForm.cs プロジェクト: zhuangyy/Motion
        public SARegisterForm(SAPreference pref, List<SALicense> lics)
        {
            InitializeComponent();
            this.Text = Translator.Instance.T("ע��...");

            this.Preference = pref;
            this.LicenseInstances = lics;

            pref.UpdateUI(this);
        }