Tag: windows phone 8.1

在Windows Phone 8.1通用应用程序中隐藏状态栏

如何隐藏Windows Phone 8.1 (C#,XAML)中的状态栏? 在Windows Phone 8 ,通过在任何页面上设置shell:SystemTray.IsVisible="False"完成。 但在Windows Phone 8.1不可用

Windows Phone上的Windows Store应用程序的照片捕获

那么,我的问题很简单: 如何使用相机为使用Windows Phone 8.1的Windows Store App捕获照片? MSDN上的示例使用Windows.Media.Capture.CameraCaptureUI ,这在Windows Phone上不可用,或者用于Silverlight 。 我无法find使用Windows运行时专门为Windows Phone应用程序的任何文档或示例。 如果有人知道,甚至有这个文件,我会很高兴。

当DataTemplate是Button时,ListBox项返回string

我正在创build一个WP 8.1 Silverlight应用程序。 我有一个string名称的ObservableCollection ,它被设置为ListBox的ItemsSource 。 ListBox中button的名称。 然后我想从ListBox提取button,但返回值是stringtypes。 xaml代码是: <ListBox x:Name="Game_ScrollViewer_online" Margin="41,104,128,6" SelectedValuePath="Current_game_button"> <ListBox.ItemTemplate> <DataTemplate> <Button x:Name="Current_game_button" Content="{Binding}" HorizontalAlignment="Center" Height="80" Margin="-14,6,-15,0" VerticalAlignment="Top" Width="210" Template="{StaticResource Button_CurrentLayout1}" RenderTransformOrigin="0.5,0.5" Foreground="#FFCBECCB" FontFamily="Times New Roman" Click="LoadGame_online" FontSize="16"> </Button> </DataTemplate> </ListBox.ItemTemplate> </ListBox> 然后我想提取button元素: for (int i = 0; i < Game_ScrollViewer_online.Items.Count; i++) { var tempType = Game_ScrollViewer_online.Items[i].GetType(); Button tempBut = (Game_ScrollViewer_online.Items[i] […]