async void LoadData(int id)
 {
     if (Decoration == null)
     {
         Decoration = await MHDatabaseHelper.GetDecoration(id);
     }
     if (Components == null)
     {
         Components = await MHDatabaseHelper.GetComponentsForItem(id);
     }
     if (Skills == null)
     {
         Skills = await MHDatabaseHelper.GetSkillTreesForItem(id);
     }
 }