bkardol
bkardol

Reputation: 1268

Correct way of databinding to DateTime.Now.DayOfWeek?

I would like to bind the DateTime.Now.DayOfWeek property. This will be shown in the view through databinding.

It's no problem to bind the DayOfWeek property, but..... How Can I detect the end of the day without using a timer to check it continuously (for example every hour..)?

Upvotes: 0

Views: 120

Answers (1)

Erti-Chris Eelmaa
Erti-Chris Eelmaa

Reputation: 26298

You can't. Simple as that.

Use timers.

Upvotes: 3

Related Questions