mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
913 B
20 lines
913 B
<Application |
|
x:Class="OpenCVXaml.App" |
|
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"> |
|
|
|
<!--Application Resources--> |
|
<Application.Resources> |
|
<local:LocalizedStrings xmlns:local="clr-namespace:OpenCVXaml" x:Key="LocalizedStrings"/> |
|
</Application.Resources> |
|
|
|
<Application.ApplicationLifetimeObjects> |
|
<!--Required object that handles lifetime events for the application--> |
|
<shell:PhoneApplicationService |
|
Launching="Application_Launching" Closing="Application_Closing" |
|
Activated="Application_Activated" Deactivated="Application_Deactivated"/> |
|
</Application.ApplicationLifetimeObjects> |
|
|
|
</Application> |