コード例 #1
0
        protected async override void OnAppearing()
        {
            base.OnAppearing();
            List <string>        testfiles = new List <string>();
            IEnumerable <string> tests     = await AppFunctions.GetTestList();

            foreach (string test in tests)
            {
                testfiles.Add(test);
            }
            TestList.ItemsSource = testfiles;
        }