Files
PowerToys/src/settings-ui/Settings.UI/Behaviors/NavigationViewHeaderMode.cs

14 lines
344 B
C#
Raw Normal View History

// Copyright (c) Microsoft Corporation
// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace Microsoft.PowerToys.Settings.UI.Behaviors
2020-03-11 10:43:32 -07:00
{
public enum NavigationViewHeaderMode
{
Always,
Never,
Minimal,
2020-03-11 10:43:32 -07:00
}
}