我见过various的examples ways to get a query string with C#,但是有办法用XAML获取查询字符串吗? 我正在开发一个简单的视频播放器页面(Windows Phone),其中一个按钮只是传递玩家页面应该播放的内容。
XAML for player.xaml:
<phone:PhoneApplicationPage
x:Class="FlcLive_WindowsPhone8.player"
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"
xmlns:mmppf="clr-namespace:Microsoft.PlayerFramework;assembly=Microsoft.PlayerFramework"
xmlns:adaptive="clr-namespace:Microsoft.PlayerFramework.Adaptive;assembly=Microsoft.PlayerFramework.Adaptive"
FontFamily="{StaticResource PhoneFontFamilyNormal}"
FontSize="{StaticResource PhoneFontSizeNormal}"
Foreground="{StaticResource PhoneForegroundBrush}"
SupportedOrientations="Landscape" Orientation="Landscape"
mc:Ignorable="d"
shell:SystemTray.IsVisible="True"
shell:SystemTray.Opacity="0.0">
<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot" Background="Transparent">
<mmppf:MediaPlayer Source="">
<mmppf:MediaPlayer.Plugins>
<adaptive:AdaptivePlugin />
</mmppf:MediaPlayer.Plugins>
</mmppf:MediaPlayer>
</Grid>
</phone:PhoneApplicationPage>
我正在尝试使用查询字符串填充Source=""
部分。
我假设某种M-V-VM系统和数据绑定将是最终的做事方式,但对于这么简单的努力来说,这似乎是一种巨大的过度杀伤。
进入播放器页面的链接将与player.xaml?publishingpoint=http://bleh.bleh.bleh
一致。我是一个PHP家伙。如果我是在网站上做的话,我会<?php echo $_GET["publishingpoint"]; ?>
。
有一种简单的方法吗?