Esempio n. 1
0
        public UpdateInfoForm(string gotoUrl, VersionInfo versionInfo)
        {
            InitializeComponent();

            _gotoUrl = gotoUrl;
            lb_newVersion.Text = versionInfo.Version;
            tb_whatsNew.Text = versionInfo.WhatsNew;

            lb_currentVersion.Text = Application.ProductVersion;
        }
Esempio n. 2
0
 protected virtual void OnFinished(VersionInfo obj)
 {
     var handler = Finished;
     if (handler != null) handler(obj);
 }