2011-07-13 62 views
0

如何按月顯示提醒? 我已經創建了這個部分代碼,並且我被Stucked如何操作來檢查並獲得按月提醒。如何按月顯示Windows手機提醒

reminders = ScheduledActionService.GetActions<Reminder>(); 

if (reminders.Count<Reminder>() > 0) 
{ 

} 
else 
{ 

} 

如果有提醒,我想檢查一個月,並得到我想要的月份。

回答

1

試試這個:

var month = 5; // your month 
var remindersOfMonth = ScheduledActionService.GetActions<ScheduledAction>() 
         .Where(a=> a.BeginTime.Month == month); 

根據this當您使用的getActions(),它會回報你 ScheduledAction的列表。現在根據this ScheduledAction有一個名爲BeginTime的屬性,它的類型爲DateTime,因此它具有您感興趣的Month屬性。

聲明中的變量「a」實際上是集合中的每個ScheduledAction,它們將在該月再次開始評估。

+0

只是檢查。應該使用整數月份(int intMth = 5)? (a)在哪裏聲明? – MilkBottle

+0

只是檢查。應該使用整數月份(int intMth = 5)? (a)在哪裏聲明? – MilkBottle

+0

請參閱我的新評論 –