8.0 關聯啟動: 使用外部程式開啟一個檔案或URI, 關聯指定的檔案類型或協議
介紹
與眾不同 windows phone 8.0 之 關聯啟動
使用外部程式開啟一個檔案
使用 外部程式開啟一個 Uri
關聯指定的檔案類型
關聯指定的協議
樣本
1、示範如何使用 外部程式開啟一個檔案
AssociationLaunching/LaunchFile.xaml
<phone:PhoneApplicationPage x:Class="Demo.AssociationLaunching.LaunchFile" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone" xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" FontFamily="{StaticResource PhoneFontFamilyNormal}" FontSize="{StaticResource PhoneFontSizeNormal}" Foreground="{StaticResource PhoneForegroundBrush}" SupportedOrientations="Portrait" Orientation="Portrait" mc:Ignorable="d" shell:SystemTray.IsVisible="True"> <Grid Background="Transparent"> <StackPanel> <TextBlock Name="lblMsg" Margin="0 0 0 10" /> <Button Content="開啟一個 .log 檔案" Name="btnLaunchFile" Click="btnLaunchFile_Click" /> </StackPanel> </Grid> </phone:PhoneApplicationPage>