File: PlatformConfiguration\WindowsSpecific\ToolbarPlacement.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
namespace Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific
{
	/// <include file="../../../../docs/Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific/ToolbarPlacement.xml" path="Type[@FullName='Microsoft.Maui.Controls.PlatformConfiguration.WindowsSpecific.ToolbarPlacement']/Docs/*" />
	public enum ToolbarPlacement
	{
		/// <summary>
		/// Default will place the Toolbar at the bottom of the screen on phones and
		/// at the top of the screen on larger devices
		/// </summary>
		Default,
 
		/// <summary>
		/// Always place the Toolbar at the top of the screen
		/// </summary>
		Top,
 
		/// <summary>
		/// Always place the Toolbar at the bottom of the screen
		/// </summary>
		Bottom
	}
 
 
}