summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/Frame.cs
diff options
context:
space:
mode:
authorJason Smith <jason.smith@xamarin.com>2016-03-22 13:02:25 -0700
committerJason Smith <jason.smith@xamarin.com>2016-03-22 16:13:41 -0700
commit17fdde66d94155fc62a034fa6658995bef6fd6e5 (patch)
treeb5e5073a2a7b15cdbe826faa5c763e270a505729 /Xamarin.Forms.Core/Frame.cs
downloadxamarin-forms-17fdde66d94155fc62a034fa6658995bef6fd6e5.tar.gz
xamarin-forms-17fdde66d94155fc62a034fa6658995bef6fd6e5.tar.bz2
xamarin-forms-17fdde66d94155fc62a034fa6658995bef6fd6e5.zip
Initial import
Diffstat (limited to 'Xamarin.Forms.Core/Frame.cs')
-rw-r--r--Xamarin.Forms.Core/Frame.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/Frame.cs b/Xamarin.Forms.Core/Frame.cs
new file mode 100644
index 00000000..01f409e4
--- /dev/null
+++ b/Xamarin.Forms.Core/Frame.cs
@@ -0,0 +1,30 @@
+using Xamarin.Forms.Platform;
+
+namespace Xamarin.Forms
+{
+ [ContentProperty("Content")]
+ [RenderWith(typeof(_FrameRenderer))]
+ public class Frame : ContentView
+ {
+ public static readonly BindableProperty OutlineColorProperty = BindableProperty.Create("OutlineColor", typeof(Color), typeof(Frame), Color.Default);
+
+ public static readonly BindableProperty HasShadowProperty = BindableProperty.Create("HasShadow", typeof(bool), typeof(Frame), true);
+
+ public Frame()
+ {
+ Padding = new Size(20, 20);
+ }
+
+ public bool HasShadow
+ {
+ get { return (bool)GetValue(HasShadowProperty); }
+ set { SetValue(HasShadowProperty, value); }
+ }
+
+ public Color OutlineColor
+ {
+ get { return (Color)GetValue(OutlineColorProperty); }
+ set { SetValue(OutlineColorProperty, value); }
+ }
+ }
+} \ No newline at end of file