54 lines
1020 B
C#
54 lines
1020 B
C#
using System;
|
|
using System.Web.UI;
|
|
|
|
namespace GPW_Smart
|
|
{
|
|
public partial class Site : MasterPage
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
cmp_footer.eh_doRefresh += Cmp_footer_eh_doRefresh;
|
|
}
|
|
|
|
private void Cmp_footer_eh_doRefresh(object sender, EventArgs e)
|
|
{
|
|
// faccio refresh pagina...
|
|
}
|
|
/// <summary>
|
|
/// Imposta vilibilità componente search globale
|
|
/// </summary>
|
|
public bool showSearch
|
|
{
|
|
get
|
|
{
|
|
return cmp_menuTop.showSearch;
|
|
}
|
|
set
|
|
{
|
|
cmp_menuTop.showSearch = value;
|
|
}
|
|
}
|
|
|
|
public bool showSettings { get; set; }
|
|
public bool showLeftPnl { get; set; }
|
|
|
|
public string hideSettings
|
|
{
|
|
get
|
|
{
|
|
string answ = "";
|
|
if (!showSettings) answ = "hidden";
|
|
return answ;
|
|
}
|
|
}
|
|
public string hideLeftPnl
|
|
{
|
|
get
|
|
{
|
|
string answ = "";
|
|
if (!showLeftPnl) answ = "hidden";
|
|
return answ;
|
|
}
|
|
}
|
|
}
|
|
} |