[macOS] Adds Scrollbars to ListViews and ScrollViews (#740)

This commit is contained in:
Marko Ludolph 2017-02-03 17:25:34 +01:00 коммит произвёл Rui Marinho
Родитель c84bb83676
Коммит a67b176051
2 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -106,7 +106,8 @@ namespace Xamarin.Forms.Platform.MacOS
var scroller = new NSScrollView
{
AutoresizingMask = NSViewResizingMask.HeightSizable | NSViewResizingMask.WidthSizable,
DocumentView = _table = CreateNSTableView(e.NewElement)
DocumentView = _table = CreateNSTableView(e.NewElement),
HasVerticalScroller = true
};
SetNativeControl(scroller);
}

Просмотреть файл

@ -23,6 +23,7 @@ namespace Xamarin.Forms.Platform.MacOS
ContentView.PostsBoundsChangedNotifications = true;
NSNotificationCenter.DefaultCenter.AddObserver(this, new Selector(nameof(UpdateScrollPosition)),
BoundsChangedNotification, ContentView);
HasVerticalScroller = true;
}
IScrollViewController Controller => Element as IScrollViewController;