public bool CanShow() { DateTime dt = PreferencesSaver.GetDailyGiftDate(); DateTime ndt = System.DateTime.Now; if (dt.Day < ndt.Day || dt.Month < ndt.Month || dt.Year < ndt.Year) { return(true); } return(false); }