Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBertrand Le Roy <beleroy@microsoft.com>2017-09-27 03:14:01 +0300
committerBertrand Le Roy <beleroy@microsoft.com>2017-09-27 03:14:01 +0300
commit63456902df43c32d0764d213be13f05a42429c8e (patch)
treefb1e48c0946e7078f08679fd0ff89fb64f3a5d95 /Xamarin.PropertyEditing.Mac/PropertyTableDelegate.cs
parent6abbffe4162041414601f922acf9d5d5b217a2b6 (diff)
Add sample mocked control support to standalone mac app, fix Size and Point mac support.
Diffstat (limited to 'Xamarin.PropertyEditing.Mac/PropertyTableDelegate.cs')
-rw-r--r--Xamarin.PropertyEditing.Mac/PropertyTableDelegate.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Xamarin.PropertyEditing.Mac/PropertyTableDelegate.cs b/Xamarin.PropertyEditing.Mac/PropertyTableDelegate.cs
index f095ae5..28ac845 100644
--- a/Xamarin.PropertyEditing.Mac/PropertyTableDelegate.cs
+++ b/Xamarin.PropertyEditing.Mac/PropertyTableDelegate.cs
@@ -166,10 +166,10 @@ namespace Xamarin.PropertyEditing.Mac
{typeof (PropertyViewModel<CoreGraphics.CGRect>), typeof (CGRectEditorControl)},
{typeof (PredefinedValuesViewModel<>), typeof(PredefinedValuesEditor<>)},
{typeof (PropertyViewModel<CoreGraphics.CGSize>), typeof (CGSizeEditorControl)},
- {typeof (PropertyViewModel<Point>), typeof (PointEditorControl)},
- {typeof (PropertyViewModel<CommonPoint>), typeof (PointEditorControl) },
- {typeof (PropertyViewModel<Size>), typeof (SizeEditorControl)},
- {typeof (PropertyViewModel<CommonSize>), typeof (SizeEditorControl) },
+ {typeof (PropertyViewModel<Point>), typeof (SystemPointEditorControl)},
+ {typeof (PropertyViewModel<CommonPoint>), typeof (CommonPointEditorControl) },
+ {typeof (PropertyViewModel<Size>), typeof (SystemSizeEditorControl)},
+ {typeof (PropertyViewModel<CommonSize>), typeof (CommonSizeEditorControl) },
{typeof (PropertyViewModel<Rectangle>), typeof (RectangleEditorControl)}
};
}