summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.UAP
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.UAP')
-rw-r--r--Xamarin.Forms.Platform.UAP/NativeBindingService.cs4
-rw-r--r--Xamarin.Forms.Platform.UAP/NativeValueConverterService.cs4
-rw-r--r--Xamarin.Forms.Platform.UAP/PlatformUWP.cs1
3 files changed, 7 insertions, 2 deletions
diff --git a/Xamarin.Forms.Platform.UAP/NativeBindingService.cs b/Xamarin.Forms.Platform.UAP/NativeBindingService.cs
index e999af2a..12112406 100644
--- a/Xamarin.Forms.Platform.UAP/NativeBindingService.cs
+++ b/Xamarin.Forms.Platform.UAP/NativeBindingService.cs
@@ -4,6 +4,8 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.UI.Xaml;
+using Xamarin.Forms.Internals;
+using Xamarin.Forms.Xaml.Internals;
#if WINDOWS_UWP
[assembly: Xamarin.Forms.Dependency(typeof(Xamarin.Forms.Platform.UWP.NativeBindingService))]
@@ -13,7 +15,7 @@ namespace Xamarin.Forms.Platform.UWP
namespace Xamarin.Forms.Platform.WinRT
#endif
{
- public class NativeBindingService : Xaml.INativeBindingService
+ public class NativeBindingService : INativeBindingService
{
public bool TrySetBinding(object target, string propertyName, BindingBase binding)
{
diff --git a/Xamarin.Forms.Platform.UAP/NativeValueConverterService.cs b/Xamarin.Forms.Platform.UAP/NativeValueConverterService.cs
index 1f0ef68a..574f78ed 100644
--- a/Xamarin.Forms.Platform.UAP/NativeValueConverterService.cs
+++ b/Xamarin.Forms.Platform.UAP/NativeValueConverterService.cs
@@ -4,6 +4,8 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Windows.UI.Xaml;
+using Xamarin.Forms.Internals;
+using Xamarin.Forms.Xaml.Internals;
#if WINDOWS_UWP
[assembly: Xamarin.Forms.Dependency(typeof(Xamarin.Forms.Platform.UWP.NativeValueConverterService))]
@@ -13,7 +15,7 @@ namespace Xamarin.Forms.Platform.UWP
namespace Xamarin.Forms.Platform.WinRT
#endif
{
- public class NativeValueConverterService : Xaml.INativeValueConverterService
+ public class NativeValueConverterService : INativeValueConverterService
{
public bool ConvertTo(object value, Type toType, out object nativeValue)
{
diff --git a/Xamarin.Forms.Platform.UAP/PlatformUWP.cs b/Xamarin.Forms.Platform.UAP/PlatformUWP.cs
index 83cb9129..bc2ea499 100644
--- a/Xamarin.Forms.Platform.UAP/PlatformUWP.cs
+++ b/Xamarin.Forms.Platform.UAP/PlatformUWP.cs
@@ -10,6 +10,7 @@ using Windows.UI.Core;
using Windows.UI.ViewManagement;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
+using Xamarin.Forms.Internals;
namespace Xamarin.Forms.Platform.UWP
{