Ejemplo n.º 1
0
        /// <summary>
        /// Checks for updates.
        /// </summary>
        public void CheckForUpdates()
        {
            Logger.Debug("Shows the Update-window.");

            var viewModel = new UpdaterViewModel(this);

            WindowManager.ShowDialog <UpdaterView>(viewModel);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PackageViewModel"/> class.
 /// </summary>
 /// <param name="parent">The parent.</param>
 public PackageViewModel(UpdaterViewModel parent)
     : this()
 {
     this.parent = parent;
 }