如何在Windows Phone 8.1模拟器上测试自动启动

时间:2015-12-14 14:41:40

标签: silverlight windows-phone-8.1 windows-phone-emulator

我是Windows Phone应用程序开发的新手,目前正在为Windows 8.1编写Silverlight应用程序 我能够按照Microsoft指令让我的应用程序关联特定的文件扩展名。

现在是一个相当愚蠢的问题,如何在模拟器中测试此功能? 假设我在" SD卡上有相关文件",我将如何浏览该文件并将其打开。或者这是完全没必要的,我正在推翻这个功能?

根据arya404的回答,我在我的应用程序中添加了一个测试按钮,用于启动本地文件。
按钮本身:

<Button x:Name="button" Content="Test" Click="test_button_clicked"/>

按钮的代码:

private async void test_button_clicked(object sender, RoutedEventArgs e)
{
    StorageFile myFile = await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFileAsync("local.file");
    await Windows.System.Launcher.LaunchFileAsync(myFile);
}

1 个答案:

答案 0 :(得分:0)

您是否尝试通过“文件”应用程序打开文件? https://www.microsoft.com/en-us/store/apps/files/9wzdncrfj3pl