0

我在点击调试时发现了一些东西,现在我被困在这个视图中。

我以前从未见过它,不知道我是如何做到的,并且很想知道如何撤消它。

请注意,这是一个 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>
4

1 回答 1

1

有时,Blend 或 Visual Studio 2012/2013 设计器会变得如此古怪。您可以执行以下两项操作之一:

  1. 关闭并重新打开 XAML 页面
  2. 关闭并重新打开 Visual Studio

通常第一个选项会为我修复它,但第二个选项总是可以的。

快乐编码!

于 2013-11-11T16:56:40.857 回答