Ejemplo n.º 1
0
        private void UpdateApps()
        {
            SPath = PathInput.Text;
            try
            {
                AppList = new List <PrgData>();

                AppList = LoadList.GetExe(SPath);
                PrintApps();
            }
            catch (Exception)
            {
                ErrMsg.Text = "nevalidní cesta pro vyhledání";
            }
        }
Ejemplo n.º 2
0
 private void UpdateAppsWithPrewPath()
 {
     AppList = new List <PrgData>();
     AppList = LoadList.GetExe(SPath);
     PrintApps();
 }