c# - Remove weekends Silverlight DatePicker -


i have little question silverlight's datepicker.

i wonder if knows how remove every week end silverlight's datepicker?

thank answers.

its going lot of coding,

simple way specifying weekend dates,

<calendar name="calworkingdays" selectionmode="singledate">     <calendar.blackoutdates>         <calendardaterange start="8/6/14" end="8/7/14"/>         <calendardaterange start="8/20/14" end="8/20/14"/>         <calendardaterange start="8/28/14" end="8/30/14"/>     </calendar.blackoutdates> </calendar> 

if doing using mvvm, have service method blackoutdates , bind mentioned here. datepicker-with-holiday-blackouts-and-tooltips


Comments

Popular posts from this blog

jQuery Mobile app not scrolling in Firefox -

c++ - How to add Crypto++ library to Qt project -

php array slice every 2th rule -