Example #1
0
        public async void LoadItemId(int itemId)
        {
            try
            {
                var category = await CategoryDataStore.GetItemAsync(itemId);

                Text        = category.Text;
                Description = category.Description;
                SuccessRate = category.SuccessRate;
            }
            catch (Exception)
            {
                Debug.WriteLine("Failed to Load Category");
            }
        }