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:
authorLarry Ewing <lewing@gmail.com>2018-05-16 22:57:51 +0300
committerLarry Ewing <lewing@microsoft.com>2018-07-16 22:05:49 +0300
commitbe3e495b986db4eb09ecd206718a7455d581a765 (patch)
treef1296328421811cd91727a8311f6b7a26200c16e /Xamarin.PropertyEditing.Mac/Controls/Custom/CommonBrushLayer.cs
parent5341f42f329b343486569cd7cc93f0f7d72be1fd (diff)
Formatting fixes
Diffstat (limited to 'Xamarin.PropertyEditing.Mac/Controls/Custom/CommonBrushLayer.cs')
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/Custom/CommonBrushLayer.cs14
1 files changed, 5 insertions, 9 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Controls/Custom/CommonBrushLayer.cs b/Xamarin.PropertyEditing.Mac/Controls/Custom/CommonBrushLayer.cs
index e49e560..6f04bb7 100644
--- a/Xamarin.PropertyEditing.Mac/Controls/Custom/CommonBrushLayer.cs
+++ b/Xamarin.PropertyEditing.Mac/Controls/Custom/CommonBrushLayer.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using AppKit;
using CoreAnimation;
using CoreGraphics;
@@ -17,11 +17,9 @@ namespace Xamarin.PropertyEditing.Mac
}
CALayer brushLayer;
- CALayer BrushLayer
- {
+ CALayer BrushLayer {
get => brushLayer;
- set
- {
+ set {
if (brushLayer != null)
brushLayer.RemoveFromSuperLayer ();
@@ -33,11 +31,9 @@ namespace Xamarin.PropertyEditing.Mac
}
CommonBrush brush;
- public CommonBrush Brush
- {
+ public CommonBrush Brush {
get => brush;
- set
- {
+ set {
brush = value;
BrushLayer = CreateBrushLayer (brush);
Opacity = brush == null ? 0 : 1;