// نمایش پنل ماه private void ShowMonthTimer_Tick(object sender, EventArgs e) { if (MonthPanel.Location.X > 0) { MonthPanel.Location = new Point(MonthPanel.Location.X - 30, MonthPanel.Location.Y); } else { ShowMonthTimer.Stop(); } }
// درخواست دهنده پنل ماه private void MonthsView(object sender, MouseEventArgs e) { isEmpty = false; ShowMonthTimer.Start(); }