Esempio n. 1
0
        private void menuItemSetup_Click(object sender, EventArgs e)
        {
            if (PrefC.GetBool(PrefName.UpdateWindowShowsClassicView))
            {
                return;
            }
            if (!Security.IsAuthorized(Permissions.Setup))
            {
                return;
            }
            FormUpdateSetup FormU = new FormUpdateSetup();

            FormU.ShowDialog();
            SetButtonVisibility();
        }
Esempio n. 2
0
 private void menuItemSetup_Click(object sender,EventArgs e)
 {
     if(PrefC.GetBool(PrefName.UpdateWindowShowsClassicView)){
         return;
     }
     FormUpdateSetup FormU=new FormUpdateSetup();
     FormU.ShowDialog();
     SetMsiVisibility();
 }