summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/CompressedLayout.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/CompressedLayout.cs')
-rw-r--r--Xamarin.Forms.Core/CompressedLayout.cs40
1 files changed, 0 insertions, 40 deletions
diff --git a/Xamarin.Forms.Core/CompressedLayout.cs b/Xamarin.Forms.Core/CompressedLayout.cs
deleted file mode 100644
index bd93b560..00000000
--- a/Xamarin.Forms.Core/CompressedLayout.cs
+++ /dev/null
@@ -1,40 +0,0 @@
-using System;
-using System.ComponentModel;
-
-namespace Xamarin.Forms
-{
- public static class CompressedLayout
- {
- public static readonly BindableProperty IsHeadlessProperty =
- BindableProperty.Create("IsHeadless", typeof(bool), typeof(CompressedLayout), default(bool),
- propertyChanged: OnIsHeadlessPropertyChanged);
-
- public static bool GetIsHeadless(BindableObject bindable)
- => (bool)bindable.GetValue(IsHeadlessProperty);
-
- public static void SetIsHeadless(BindableObject bindable, bool value)
- => bindable.SetValue(IsHeadlessProperty, value);
-
- static void OnIsHeadlessPropertyChanged(BindableObject bindable, object oldValue, object newValue)
- {
- var ve = bindable as IVisualElementController;
- if (ve == null)
- return;
- if (ve.IsPlatformEnabled)
- throw new InvalidOperationException("IsHeadless can not be modified when the view is rendered");
- }
-
- static readonly BindablePropertyKey HeadlessOffsetPropertyKey =
- BindableProperty.CreateReadOnly("HeadlessOffset", typeof(Point), typeof(CompressedLayout), default(Point));
-
- [EditorBrowsable(EditorBrowsableState.Never)]
- public static readonly BindableProperty HeadlessOffsetProperty = HeadlessOffsetPropertyKey.BindableProperty;
-
- [EditorBrowsable(EditorBrowsableState.Never)]
- public static Point GetHeadlessOffset(BindableObject bindable)
- => (Point)bindable.GetValue(HeadlessOffsetProperty);
-
- internal static void SetHeadlessOffset(BindableObject bindable, Point value)
- => bindable.SetValue(HeadlessOffsetPropertyKey, value);
- }
-} \ No newline at end of file