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 Designer がそのように奇抜になることがあります。次の 2 つのいずれかを行うことができます。

  1. XAML ページを閉じて再度開く
  2. Visual Studio をシャットダウンして再度開く

通常、最初のオプションで修正されますが、2 番目のオプションで常に修正されます。

ハッピーコーディング!

于 2013-11-11T16:56:40.857 に答える