7    public override void OnSwitchContent(
int idTab)
 
    9        this.stat.Refresh(
EClass.Branch.statistics);
 
   14    public void RefreshLog()
 
   16        UIList uilist = this.listLog;
 
   17        BaseList baseList = uilist;
 
   19        callback.onInstantiate = delegate(
MsgLog.
Data a, UIItem b)
 
   21            b.text1.text = a.text.ToTitleCase(
false);
 
   24                b.text1.SetColor(a.col.ToEnum(
true));
 
   26            b.text2.text = 
string.Concat(
new string[]
 
   28                a.date.month.ToString(),
 
   30                a.date.day.ToString(),
 
   32                a.date.hour.ToString(),
 
   37        baseList.callbacks = callback;
 
   43        uilist.Refresh(
false);
 
   44        this.RebuildLayout(
true);
 
   48    public UIList listLog;