Пример #1
0
        public Form1(string[] args)
        {
            InitializeComponent();
            label1.Text = "Version: " + ApplicationAssembly.GetName().Version.ToString();
            this.args   = args;

            update = new MUpdater(this);
            MUpdate.Events.MUpdateEventBridge.AsyncUpdateFinished += MUpdateEventBridge_AsyncUpdateFinished;
        }
Пример #2
0
        public UpdateManager(Form _context = null)
        {
            context = _context;

            updater = new MUpdater(this);
        }
Пример #3
0
 public UpdateManager()
 {
     update = new MUpdater(this);
     MUpdateEventBridge.AsyncUpdateFinished += MUpdateEventBridge_AsyncUpdateFinished;
 }
Пример #4
0
        public Updater(Form formReferent)
        {
            FormReferent = formReferent;

            updater = new MUpdater(this);
        }