summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT/IToolbarProvider.cs
blob: 0db54b0251e468d8b1afe18cfb3812e6190a588d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Threading.Tasks;
using Windows.UI.Xaml.Controls;

#if WINDOWS_UWP

namespace Xamarin.Forms.Platform.UWP
#else

namespace Xamarin.Forms.Platform.WinRT
#endif
{
	internal interface IToolbarProvider
	{
		Task<CommandBar> GetCommandBarAsync();
	}
}