1

如何在 WP7 中为音频播放器创建全局搜索栏?我想创建这样的东西http://fastandroid.ru/wp-content/uploads/2011/07/vkontakte-amberfog_4.png

4

1 回答 1

0

将必要的控件添加到应用程序框架,而不是一个/每个页面。

在 app.xaml 添加如下内容:

<Application.RootVisual>
    <phone:PhoneApplicationFrame x:Name="RootFrame"
           Navigated="CompleteInitializePhoneApplication"
           NavigationFailed="RootFrame_NavigationFailed">
        <phone:PhoneApplicationFrame.Template>
            <ControlTemplate>
                <Grid>
                    <Grid.RowDefinitions>
                        <RowDefinition Height="700"/>
                        <RowDefinition Height="100"/>
                    </Grid.RowDefinitions>
                    <Grid Grid.Row="0" x:Name="ClientArea">
                        <ContentPresenter />
                    </Grid>

                    <Grid Grid.Row="0">
                        // your controls here
                    </Grid>
                </Grid>
            </ControlTemplate>
        </phone:PhoneApplicationFrame.Template>
    </phone:PhoneApplicationFrame>
</Application.RootVisual>
于 2011-08-11T08:46:10.670 回答