- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经搜索并尝试了不到一个小时的时间。我不认为这应该很难做到,但无论出于何种原因,无论我更改什么,我在使用月历选择日期时都会遇到同样的错误。
我不确定我是在某个地方做的,还是 C# 对我喜怒无常。
使用中的表单控件的一些一般描述 - 有两个文本框(textBox3 和 textBox4)两个按钮(button5 和 button6)和两个月历(monthcalendar1 和 2)
当你点击任一按钮时,它会显示该按钮的月历,button5->monthcalendar1,和 button6->monthcalendar2:你可以选择一个日期,它会将那个日期放入相应的文本框,mc1-> textBox3, mc2->textBox4
现在您应该了解哪些控件位于何处的一些详细信息...这是我在用户选择日期时使用的代码,这对于 mc1 和 2 都是相似的,所以我可能只会发布代码其中 1 个....
private void monthCalendar2_DateSelected(object sender, DateRangeEventArgs e)
{
textBox4.Text = monthCalendar2.SelectionStart.ToShortDateString();
monthCalendar2.Location = new Point(306, 204);
monthCalendar2.Visible = false; //306,204
}
它像这样将数据存储在文本框中:m/d/yyyy,
所以我一直试图找出存储在 textBox3 和 textBox4 中的日期之间的区别; and have tried numourous configurations of code to try to get it to work, all come back with a format exception code error when teh date for textBox4 is selected::
private void monthCalendar1_DateChanged(object sender, DateRangeEventArgs e)
{
var startDate = DateTime.Parse(textBox3.Text);//, "M/d/yyyy", System.Globalization.CultureInfo.InvariantCulture);
var endDate = DateTime.Parse(textBox4.Text);//, "M/d/yyyy"), System.Globalization.CultureInfo.InvariantCulture);
TimeSpan dateDiff = endDate - startDate;
string message = "";
if (endDate < startDate)
{
message = "Your departure date must be before your return date.";
}
else if(dateDiff.TotalDays == 0 || dateDiff.TotalDays == 1)
{
message = "Only planning one day of travel, please select one of the other options or select a longer period of travel.";
}
else if(dateDiff.TotalDays >= 7)
{
message = "Traveling less than or equal to seven days is not enough, select another option or a longer travel period.";
}
else
{
message = "Have a wonderful trip!";
}
MessageBox.Show(message, "Trip Notice");
}
我尝试过使用:
DateTime startDate, endDate;
startDate = DateTime.ParseExact(textBox3.Text,"M/d/yyyy", System.Globalization.CultureInfo.InvariantCulture);
endDate = DateTime.ParseExact(textBox4.Text,"M/d/yyyy", System.Globalization.CultureInfo.InvariantCulture);
那也行不通,所以我尝试了::
DateTime startDate, endDate;
startDate = Convert.toDateTime(textBox3.Text); //did the same for textBox4
也没用。我完全不知所措,这里的大多数帖子都让我原地打转。请帮忙。
最佳答案
这很可能是因为 DateChanged
在 DateSelected
之前调用,而您的 Text
属性为空。这应该有效:
private void monthCalendar2_DateChanged(object sender, DateRangeEventArgs e)
{
// Update the text in TextBox4 first...
textBox4.Text = monthCalendar2.SelectionStart.ToShortDateString();
var startDate = DateTime.Parse(textBox3.Text);
var endDate = DateTime.Parse(textBox4.Text);
// Rest of the code omitted...
我认为您的代码逻辑还有其他问题,但看看这是否有效。
附言这是另一个逻辑问题...您使用的是“大于或等于”而不是“小于或等于”...
else if (dateDiff.TotalDays >= 7)
{
message = "Traveling less than or equal to seven days is not enough, ...";
}
关于C# 文本框短日期格式异常错误,Windows 窗体应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43196453/
对于一个科学实验,我写了一个turtle.py ,它会打开一个 800x480 的窗口并绘制一个缓慢增长的黑点。 turtle.py以 C:\Users\kaza>python C:\Users\ka
我开发了一个 swing 应用程序,但每次运行应用程序时都会打开一个新窗口。我希望如果一个窗口已经打开,则其他窗口不允许打开。 最佳答案 Here是一个 Java 单一应用实例的例子: A singl
有没有办法检测主进程中 Electron 的结构? process.platform 似乎也在 x64 机器上返回 win32,我没有在文档中找到任何获取架构的选项。 最佳答案 你试过 process
public short[] HanningWindow(short[] signal_in ,int pos ,int size) { for (int i= pos; i < pos+si
我有一个具有这些属性的 Electron 窗口: mainWindow = new BrowserWindow({ width: 800, height: 600, title: "Aqu
我有一个 Ubuntu 工作站,我正在尝试引导一个 Windows 节点。 Windows 节点在端口 2222 上打开了 ssh。我一直在关注 http://docs.opscode.com/plu
我是一名优秀的程序员,十分优秀!