summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls/GalleryPages/XamlNativeViews.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Controls/GalleryPages/XamlNativeViews.xaml.cs')
-rw-r--r--Xamarin.Forms.Controls/GalleryPages/XamlNativeViews.xaml.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/Xamarin.Forms.Controls/GalleryPages/XamlNativeViews.xaml.cs b/Xamarin.Forms.Controls/GalleryPages/XamlNativeViews.xaml.cs
new file mode 100644
index 00000000..1e40fdb7
--- /dev/null
+++ b/Xamarin.Forms.Controls/GalleryPages/XamlNativeViews.xaml.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+
+using Xamarin.Forms;
+
+namespace Xamarin.Forms.Controls
+{
+ public partial class XamlNativeViews : ContentPage
+ {
+ public XamlNativeViews()
+ {
+ InitializeComponent();
+ BindingContext = new VM { NativeText = "Text set to Native view using native binding" };
+ }
+ }
+
+ public class VM
+ {
+ public string NativeText { get; set; }
+ }
+} \ No newline at end of file