I am using VS2013 to write a windows phone camera app.
In xaml file, an error says was not found.
Does anyone know what assembly reference do I need to add?
The references I have are
- .NET for Windows Store Apps
- Microsoft.Phone
- Microsoft.Xna.Framework
- PresentationCore
- PresentationFramework
- Windows Phone 8.1
The namespaces I use are:
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
using Microsoft.Devices;
using Microsoft.Xna.Framework.Media;
Thank you!