Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/visual-studio-2012/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Visual studio 2012 宽视窗手机?这是什么观点?_Visual Studio 2012_Windows Phone - Fatal编程技术网

Visual studio 2012 宽视窗手机?这是什么观点?

Visual studio 2012 宽视窗手机?这是什么观点?,visual-studio-2012,windows-phone,Visual Studio 2012,Windows Phone,当我点击debug时,我的手指发胖,现在我被困在这个视图中 我以前从未见过它,不知道我是怎么做的,我很想知道如何撤销它 请注意,这是一个Windows Phone 8应用程序 <phone:PhoneApplicationPage xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

当我点击debug时,我的手指发胖,现在我被困在这个视图中

我以前从未见过它,不知道我是怎么做的,我很想知道如何撤销它

请注意,这是一个Windows Phone 8应用程序

<phone:PhoneApplicationPage
    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:UI="clr-namespace:Microsoft.Advertising.Mobile.UI;assembly=Microsoft.Advertising.Mobile.UI"
    x:Class="mycuts.MainPage"
    mc:Ignorable="d"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait" Orientation="Portrait"
    shell:SystemTray.IsVisible="True">
    <phone:PhoneApplicationPage.ApplicationBar>
        <shell:ApplicationBar>
            <shell:ApplicationBarIconButton x:Name="add" Text="add" IconUri="/images/add.png"/>
            <shell:ApplicationBarIconButton x:Name="del" Text="delete" IconUri="/images/minus.png"/>
        </shell:ApplicationBar>
    </phone:PhoneApplicationPage.ApplicationBar>
    <Grid x:Name="LayoutRoot" Background="Transparent">
        <!--TitlePanel contains the name of the application and page title-->
        <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
            <TextBlock Text="RT APPS" Style="{StaticResource PhoneTextNormalStyle}" Margin="12,0"/>
            <TextBlock Text="My Cuts" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>
        </StackPanel>

        <Grid x:Name="ContentPanel" Margin="0,161,0,0">
            <StackPanel Orientation="Vertical">
            <ListBox x:Name="cutsList" Height="451"/>

            <!--<UI:AdControl ApplicationId="test_client" AdUnitId="Image480_80" HorizontalAlignment="Left" Height="80" VerticalAlignment="Top" Width="480"/>-->
            </StackPanel>
        </Grid>
    </Grid>
</phone:PhoneApplicationPage>


有时候Blend或Visual Studio 2012/2013设计师可能会像那样变得古怪。您可以执行以下两种操作之一:

  • 关闭并重新打开XAML页面
  • 关闭并重新打开Visual Studio
  • 通常第一个选项会帮我解决问题,但第二个选项总是这样

    快乐编码