예제 #1
0
파일: Form1.cs 프로젝트: MEsterel/MUpdate
        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
파일: Updater.cs 프로젝트: MEsterel/GenPlan
        public Updater(Form formReferent)
        {
            FormReferent = formReferent;

            updater = new MUpdater(this);
        }