23 lines
521 B
C#
23 lines
521 B
C#
namespace GPW.CORE.ADM.Components.Layout
|
|
{
|
|
public partial class MainLayout
|
|
{
|
|
#region Protected Properties
|
|
|
|
protected bool navLarge { get; set; } = true;
|
|
|
|
protected string sideClass { get; set; } = "sidebar";
|
|
|
|
#endregion Protected Properties
|
|
|
|
#region Protected Methods
|
|
|
|
protected void UpdateNavDisplay()
|
|
{
|
|
navLarge = !navLarge;
|
|
sideClass = navLarge ? "sidebar" : "sidebarSmall";
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |