Skip to content

Commit

Permalink
More #10
Browse files Browse the repository at this point in the history
  • Loading branch information
nheath99 committed Oct 5, 2018
1 parent a172b8f commit 9a143a8
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ Display day and month names in the specified culture:
````C#
<DatePicker Inline=true FormatProvider="@(new System.Globalization.CultureInfo("fr-FR"))"/>
````
![DatePicker1](/docs/images/DatePicker_Localization.png)
![DatePicker1](/docs/images/DatePicker_Localization_Months.png)
![DatePicker Localization](/docs/images/DatePicker_Localization.png)
![DatePicker Localization Months](/docs/images/DatePicker_Localization_Months.png)

### First Day of Week

Expand All @@ -45,16 +45,18 @@ Specify any weekday as the first day of the week (default is Monday):
````C#
<DatePicker Inline=true FirstDayOfWeek=IsoDayOfWeek.Thursday>
````
![DatePicker1](/docs/images/DatePicker_FirstDayOfWeek.png)
![DatePicker First Day of Week](/docs/images/DatePicker_FirstDayOfWeek.png)

### Disabled Days of Week

Disable specific days of the week:

<DatePicker Inline=true DaysOfWeekDisabled=@(new IsoDayOfWeek[] { IsoDayOfWeek.Monday, IsoDayOfWeek.Wednesday, IsoDayOfWeek.Friday }) />
````C#
<DatePicker Inline=true DaysOfWeekDisabled=@(new IsoDayOfWeek[] { IsoDayOfWeek.Monday, IsoDayOfWeek.Wednesday }) />
````
![DatePicker Disabled Days of Week](/docs/images/DatePicker_DaysOfWeekDisabled.png)

## Help Wanted!
Get in touch if you want to collaborate!!
Get in touch if you want to collaborate, there's plenty of features to add and plenty to improve!

## Future Development
- Time picker
Expand Down

0 comments on commit 9a143a8

Please sign in to comment.