GitXplorerGitXplorer
p

WPFModernScrollbarStyle

public
10 stars
5 forks
0 issues

Commits

List of commits on branch master.
Verified
200fb9a324e291d712120dc470bb91cc5b48ee97

Update README.md

committed 7 years ago
Verified
bd4ea38ec99d429b1180a7693c8f54654e7ab75d

Add screenshot

committed 7 years ago
Verified
9c2ddd3332a17d1b5b67e8e312cc0754495aacec

Update README.md

committed 7 years ago
Verified
0962ae3ba873dabc9841d835a302bd0112e63de4

Update README.md

committed 7 years ago
Verified
d2d6769e83f89fc00e6b2a44b8028a922f7e8897

Update README.md

committed 7 years ago
Verified
9b136569b25cd0fa7e7da2601861db2904584043

Update README.md

committed 7 years ago

README

The README file for this repository.

WPFModernScrollbarStyle

A modern scrollbar style for WPF XAML

Screenshot

Usage

  1. Add Scrollbar.xaml to your project.
  2. Add <ResourceDictionary Source="Scrollbar.xaml"/> to your merged dictionaries int App.xaml.
<Application ...namespaces... >
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                ...other resource dictionaries...
                
                <ResourceDictionary Source="Scrollbar.xaml"/>
                
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
    
    ...

</Application>