Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

App.xaml 948 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  1. <Application
  2. x:Class="WorkingWithWebview.WinPhone.App"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
  6. xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone">
  7. <!--Application Resources-->
  8. <Application.Resources>
  9. <local:LocalizedStrings xmlns:local="clr-namespace:WorkingWithWebview.WinPhone" x:Key="LocalizedStrings"/>
  10. </Application.Resources>
  11. <Application.ApplicationLifetimeObjects>
  12. <!--Required object that handles lifetime events for the application-->
  13. <shell:PhoneApplicationService
  14. Launching="Application_Launching" Closing="Application_Closing"
  15. Activated="Application_Activated" Deactivated="Application_Deactivated"/>
  16. </Application.ApplicationLifetimeObjects>
  17. </Application>
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...