Example #1
0
 // نمایش پنل ماه
 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();
     }
 }
Example #2
0
 // درخواست دهنده پنل ماه
 private void MonthsView(object sender, MouseEventArgs e)
 {
     isEmpty = false;
     ShowMonthTimer.Start();
 }