gpt4 book ai didi

c# - 如何从 Windows Phone 7 中的 DateTime 中减去一秒?

转载 作者:太空狗 更新时间:2023-10-29 17:38:23 26 4
gpt4 key购买 nike

我正在尝试从时间选择器中的时间值中减去一秒。我找到了将选择器值加一秒的代码,但我不知道如何减去。

我应该怎么做?

private static void CreateAlarm(DateTime time, string title)
{
var alarm = new Alarm(title)
{
Content = "You have a meeting with your team now.",
BeginTime = time.AddSeconds(10),
};
}

private void SetAlarm_Click(object sender, RoutedEventArgs e)
{
CreateAlarm(Convert.ToDateTime(timePicker1.ValueString), textBox1.Text);
}

最佳答案

只需添加一个减号:

EndTime = time.AddSeconds(-10)

关于c# - 如何从 Windows Phone 7 中的 DateTime 中减去一秒?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6964966/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com