-1

我正在使用 Coding4Fun 提示消息在 WP7(Windows Phone 7)上显示弹出消息。

我搜索了如何删除消息提示周围的白色边框,发现以下内容

如何在 Coding4Fun MessagePrompt 中删除边框

我想执行解决方案,但我不知道将 XAML 代码放在答案中的什么位置。

任何人都可以澄清答案吗?

提前致谢。

4

1 回答 1

2

你把它作为一个孩子的<phone:PhoneApplicationPage>显然。

给出的例子:

<phone:PhoneApplicationPage x:Class="Your.Class"
    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"
    Some other namespace declarations >

    <!-- Your page resources dictionary -->
    <phone:PhoneApplicationPage.Resources>  
        <ControlTemplate x:Key="MsgPropmtNoBorder"
                         TargetType="c4f:MessagePrompt">
                 BLAH-BLAH-BLAH
        </ControlTemplate>
    </phone:PhoneApplicationPage.Resources>

    <!-- Your layout root and all the page content -->
    <Grid x:Name="LayoutRoot"
          Background="Transparent">
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto" />
            <RowDefinition Height="*" />
        </Grid.RowDefinitions>

        BLAH-BLAH-BLAH-YOUR-CONTENT

    </Grid>
</phone:PhoneApplicationPage>
于 2012-08-27T13:00:18.160 回答