Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirkster99 authored Sep 6, 2017
1 parent 4b5dad9 commit 95d189a
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,33 @@
Provides MVVM/WPF conform textbox and combobox control implementations for dark and light modern UIs

The controls afre based on a refactored version from the WPF Tool Kit at: http://wpftoolkit.codeplex.com/

# TextBox with Watermark
![](https://github.com/Dirkster99/Docu/blob/master/WatermarkControlsLib/screenshot.png)

# ComboBox with Watermark
![](https://github.com/Dirkster99/Docu/blob/master/WatermarkControlsLib/screenshot1.png)
![](https://github.com/Dirkster99/Docu/blob/master/WatermarkControlsLib/screenshot2.png)
![](https://github.com/Dirkster99/Docu/blob/master/WatermarkControlsLib/screenshot3.png)


## Theming

Load *Light* or *Dark* brush resources in you resource dictionary to take advantage of existing definitions.

```XAML
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/WatermarkControlsLib;component/Themes/DarkBrushs.xaml" />
</ResourceDictionary.MergedDictionaries>
```

```XAML
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/WatermarkControlsLib;component/Themes/LightBrushs.xaml" />
</ResourceDictionary.MergedDictionaries>
```

These definitions do not theme all controls used within this library. You should use a standard theming library, such as:
- [MahApps.Metro](https://github.com/MahApps/MahApps.Metro),
- [MLib](https://github.com/Dirkster99/MLib), or
- [MUI](https://github.com/firstfloorsoftware/mui)

0 comments on commit 95d189a

Please sign in to comment.