Reputation: 717
I am using the .NET Compact Framework in VS 2005.
How can we disable specific dates in a DatePicker in C#? And how can we disable all Saturdays?
Thanks
Upvotes: 1
Views: 618
Reputation: 47510
There is no built in functionality for your requirement. What you would have to do is handling that in the date changed event.
Upvotes: 1
Reputation: 7672
There isn't any built-in method to do this.
You have a few options, such as:
Upvotes: 1