我有一个浏览任务列表(案例)的页面,但我希望该列表根据今天的日期进行更改,
IE。周六只做一半的任务,周日做所有的事情。
我目前拥有的代码全部完成,但我找不到按天拆分它们的方法。
switch (_stage)
{
case WizardStages.CHECK_FLIGHT_DETAILS:
set_stepsListView("Check flight details");
dialogueLabel.Text = "Please check all flight details";
dialogueHelpLabel.Text = "Logsheets will be printed in the next step.";
okayButton.Visible = true;
noButton.Visible = false;
yesButton.Visible = false;
break;
case WizardStages.PRINT_LOGSHEETS:
set_stepsListView("Print logsheets");
dialogueLabel.Text = "Click okay to print today's logsheets.";
dialogueHelpLabel.Text = "Please be patient.";
yesButton.Visible = false;
noButton.Visible = false;
break;
谁能给我一些关于从哪里开始的想法。谢谢