summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT
diff options
context:
space:
mode:
authorkingces95 <kingces95@users.noreply.github.com>2016-04-18 23:57:22 -0700
committerJason Smith <jason.smith@xamarin.com>2016-04-18 23:57:22 -0700
commitd51b17aece6bb5db839090616bc61fc6aac76b40 (patch)
treeccf8f4abdddbc1b2cdc0aa7dea4c1b8d7a0d71e3 /Xamarin.Forms.Platform.WinRT
parent279e4b01a329f59798e7a688e8501814c37e1385 (diff)
downloadxamarin-forms-d51b17aece6bb5db839090616bc61fc6aac76b40.tar.gz
xamarin-forms-d51b17aece6bb5db839090616bc61fc6aac76b40.tar.bz2
xamarin-forms-d51b17aece6bb5db839090616bc61fc6aac76b40.zip
Whitespace fixes (#110)
Diffstat (limited to 'Xamarin.Forms.Platform.WinRT')
-rw-r--r--Xamarin.Forms.Platform.WinRT/CarouselViewRenderer.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/Xamarin.Forms.Platform.WinRT/CarouselViewRenderer.cs b/Xamarin.Forms.Platform.WinRT/CarouselViewRenderer.cs
index e4ff754c..f29909df 100644
--- a/Xamarin.Forms.Platform.WinRT/CarouselViewRenderer.cs
+++ b/Xamarin.Forms.Platform.WinRT/CarouselViewRenderer.cs
@@ -27,7 +27,10 @@ namespace Xamarin.Forms.Platform.WinRT
ICarouselViewController Controller
{
- get { return Element; }
+ get
+ {
+ return Element;
+ }
}
protected override void OnElementChanged(ElementChangedEventArgs<CarouselView> e)
@@ -45,7 +48,7 @@ namespace Xamarin.Forms.Platform.WinRT
{
if (_flipView == null)
{
- _flipView = new FlipView
+ _flipView = new FlipView
{
IsSynchronizedWithCurrentItem = false,
ItemTemplate = (WDataTemplate)WApp.Current.Resources["ItemTemplate"]