diff --git a/samples/XamlTestApplicationPcl/TextBox.paml b/samples/XamlTestApplicationPcl/TextBox.paml
index 4bf04f9bee..63805d8b8f 100644
--- a/samples/XamlTestApplicationPcl/TextBox.paml
+++ b/samples/XamlTestApplicationPcl/TextBox.paml
@@ -20,8 +20,16 @@
+ Text="{TemplateBinding Watermark}">
+
+
+
+
+
+
Bindings { get; } = new List();
+ public IMultiValueConverter Converter { get; set; }
+ public BindingMode Mode { get; set; }
+ public BindingPriority Priority { get; set; }
+ public RelativeSource RelativeSource { get; set; }
+ public string SourcePropertyPath { get; set; }
+
+ public void Bind(IObservablePropertyBag instance, PerspexProperty property)
+ {
+ var subject = CreateSubject(instance, property);
+
+ if (subject != null)
+ {
+ Bind(instance, property, subject);
+ }
+ }
+
+ public ISubject