in my app i save a character as an html file, when i come to display it since its on the sd card i cant simply display it i have to convert it to a string, then output the string into the webview .....a wierdity but may offer you some options:
you could have your app download a file from say your drop box then convert that to a string, and from there well what ever you want to do with it
Code:
private async void webControl(string fileName)
{
string fileContent;
StorageFolder externalDevices = Windows.Storage.KnownFolders.RemovableDevices;
StorageFolder sdcard = (await externalDevices.GetFoldersAsync()).FirstOrDefault();
var dataFolder = await sdcard.GetFolderAsync("RpgApp");
var file = await dataFolder.GetFileAsync(fileName);
using (StreamReader reader = new StreamReader(await file.OpenStreamForReadAsync()))
{
fileContent = await reader.ReadToEndAsync();
}
if (fileContent.Equals("")) { fileContent = "ERROR: The file you loaded is empty or corrupt.<br> Suggest you delete " + file.Name + " from the RpgApp folder"; }
web.NavigateToString(fileContent);
}
is the method i wrote to turn a file into a string, though understand i am but a novice myself so they may (more then likely is) MUCH better ways of doing it.
but thats how i would go about it,
i would use have the ford file listing each car model in a comma seperated file and then split it the string at the commas, and add them to a list.
good luck, hope that helps.