summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Xaml.UnitTests/Issues/Issue3076.xaml.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Xaml.UnitTests/Issues/Issue3076.xaml.cs')
-rw-r--r--Xamarin.Forms.Xaml.UnitTests/Issues/Issue3076.xaml.cs55
1 files changed, 55 insertions, 0 deletions
diff --git a/Xamarin.Forms.Xaml.UnitTests/Issues/Issue3076.xaml.cs b/Xamarin.Forms.Xaml.UnitTests/Issues/Issue3076.xaml.cs
new file mode 100644
index 00000000..e44a1349
--- /dev/null
+++ b/Xamarin.Forms.Xaml.UnitTests/Issues/Issue3076.xaml.cs
@@ -0,0 +1,55 @@
+using Xamarin.Forms;
+
+using NUnit.Framework;
+
+namespace Xamarin.Forms.Xaml.UnitTests
+{
+ public class Issue3076Button : Button
+ {
+ public static readonly BindableProperty VerticalContentAlignmentProperty =
+ BindableProperty.Create ("VerticalContentAlignemnt", typeof(TextAlignment), typeof(Issue3076Button), TextAlignment.Center);
+
+ public TextAlignment VerticalContentAlignment
+ {
+ get { return (TextAlignment)GetValue (VerticalContentAlignmentProperty); }
+ set { SetValue (VerticalContentAlignmentProperty, value); }
+ }
+ }
+
+ public partial class Issue3076 : ContentPage
+ {
+ public Issue3076 ()
+ {
+ InitializeComponent ();
+ }
+
+ public Issue3076 (bool useCompiledXaml)
+ {
+ //this stub will be replaced at compile time
+ }
+
+ [TestFixture]
+ public class Tests
+ {
+ [TestCase (false)]
+ [TestCase (true)]
+ public void CanUseBindableObjectDefinedInThisAssembly (bool useCompiledXaml)
+ {
+ var layout = new Issue3076 (useCompiledXaml);
+
+ Assert.That (layout.local, Is.TypeOf<Issue3076Button> ());
+ Assert.AreEqual (TextAlignment.Start, layout.local.VerticalContentAlignment);
+ }
+
+ [TestCase (false)]
+ [TestCase (true)]
+ public void CanUseBindableObjectDefinedInOtherAssembly (bool useCompiledXaml)
+ {
+ var layout = new Issue3076 (useCompiledXaml);
+
+ Assert.That (layout.controls, Is.TypeOf<Controls.Issue3076Button> ());
+ Assert.AreEqual (TextAlignment.Start, layout.controls.HorizontalContentAlignment);
+ }
+ }
+ }
+} \ No newline at end of file