29 lines
620 B
C#
29 lines
620 B
C#
namespace SHERPA.AD.Shared
|
|
{
|
|
public partial class MainLayout
|
|
{
|
|
#region Protected Fields
|
|
|
|
protected string userName = "0";
|
|
|
|
#endregion Protected Fields
|
|
|
|
#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
|
|
}
|
|
} |