希望这不是太难遵循。
我目前正在开发一个在后台安静运行的小型时间记录应用程序。每次代码运行结束时,应用程序都会提示用户说出自上次提示以来他/她在做什么。我最终会让应用程序将数据写入电子表格。
到目前为止,我拥有的选项之一使用户能够选择他/她是否要使用默认提示设置(每次错过提示时,它都会保持可见,直到创建下一个提示,这意味着如果用户离开他/她的电脑有一段时间可能有相当多的提示坐在屏幕上等待填写)或想要合并所有提示(每次错过一个提示并弹出一个新提示时,旧的提示是关闭,新的覆盖旧提示和新提示的时间)。
用户还可以选择一个复选框来关闭提示。当他/她再次打开提示时,会弹出一个提示,要求用户填写他/她在关闭提示时所做的事情(当用户运行全屏应用程序等时很有用)。
我的问题是,当我尝试生成提示时,它们无法正确显示。我根本无法操纵它们,也没有任何控件显示。它们基本上看起来像空表格。
这是我使用代码生成提示的代码:
public void ticker(object source, System.Timers.ElapsedEventArgs e)
{
if (groupMissed)
{
incrementsMissed += 1;
if (incrementsMissed > 1)
{
IncrementForm form = (IncrementForm)Application.OpenForms["IncrementForm"];
if (form.InvokeRequired)
{
form.Invoke(new MethodInvoker(delegate { form.Close(); }));
}
}
}
else
{
incrementsMissed = 1;
}
IncrementForm theIncrementForm = new IncrementForm(this, e.SignalTime);
theIncrementForm.Show();
latestIncrement = e.SignalTime;
}
这是我使用“关闭提示”复选框生成提示的代码:
private void chkbxAlerts_Click(object sender, EventArgs e)
{
if (!chkbxAlerts.Checked)
{
// Ensures that the time missed is covered and restarts the timer
DateTime now;
now = DateTime.Now;
if ((now - latestIncrement).TotalMinutes >= 1) // Only records time if it is equal to or greater than one minute
{
// TO-DO: FIX
if (groupMissed)
{
incrementsMissed += 1;
if (incrementsMissed > 1)
{
IncrementForm form = (IncrementForm)Application.OpenForms["IncrementForm"];
if (form.InvokeRequired)
{
form.Invoke(new MethodInvoker(delegate { form.Close(); }));
}
}
}
else
{
incrementsMissed = 1;
}
IncrementForm theIncrementForm = new IncrementForm(this, now, latestIncrement);
theIncrementForm.Show();
latestIncrement = now;
}
timer.Enabled = true;
}
else
{
// Stops the timer
timer.Enabled = false;
}
}
如果您需要任何进一步的说明,请告诉我。非常感谢您的帮助,这一直困扰着我。