如何創建在WP7音頻播放器的全球搜索欄?我想創建這樣的全球搜索欄的MediaElement WP7
1
A
回答
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>
相關問題
- 1. 全球搜索Android
- 2. Android全球搜索
- 3. 的MediaElement在WP7
- 4. 全球搜索ng2-smart-table
- 5. 使用WP7的MediaElement
- 6. Clearbox全球搜索全部vob
- 7. 手柄雙擊全球WP7?
- 8. 跨欄目全文搜索
- 9. 完全隱藏搜索欄
- 10. 全寬搜索頂欄
- 11. wp7 mediaelement vs mediaplayer launcher
- 12. 全球導航欄
- 13. 全球搜索領域,通過多列
- 14. 骨幹多集合全球搜索
- 15. WordPress REST API全球搜索(API V2)
- 16. Drupal:啓用全球搜索表單嗎?
- 17. 搜索全球域名在Active Directory中
- 18. PhpStorm全球搜索不起作用
- 19. 谷歌地圖全球搜索
- 20. 在全球正則表達式搜索
- 21. 通過全球通訊錄搜索
- 22. Javascript - Regexp - 全球搜索問題
- 23. 執行全球搜索消息時的安全異常
- 24. 全搜索欄添加到導航
- 25. 搜索欄來搜索TextViews
- 26. wp7智能列表搜索
- 27. 我想在liferay的全球搜索中搜索組織和用戶
- 28. 全局MediaElement將不會重新啓動一次停止,wp7
- 29. 搜索結果lua - 嘗試索引全球「自我」(無值)
- 30. Neo的全球索引
你有問題嗎? – AnthonyWJones
我怎麼能意識到這一點?我要求甚至意識到這一點,而不是代碼。首先我添加'var _pop = new Popup {Child = mediaelelement,IsOpen = true};'我可以在所有頁面上播放音頻 – SevenDays