Skip to content

Dirkster99/HistoryControlLib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build status Release NuGet

Net4 NetCore3

HistoryControlLib

Implements a themable recent locations (forward, backward, up. pop-up list) control a la Windows (7-10) Explorer. These controls and viewmodels are re-used in the File System Controls project which in turn is integrated in Edi.

The repository contains the sources for a Generic and a Dark and Light themed test client.

The Locations Drop-Down button makes use of the Segoe UI Symbol font, which may not always be available on Windows 7. The font can either be installed via update from Microsoft of the drop down button definition for the down chevron can be replaced with a path definition.

Navigate Back Direction

Navigate Forward Direction

Navigate Up

Navigate within list of recently visited locations

Theming

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

    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="/HistoryControlLib;component/Themes/DarkTheme.xaml" />
    </ResourceDictionary.MergedDictionaries>
    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="/HistoryControlLib;component/Themes/LightTheme.xaml" />
    </ResourceDictionary.MergedDictionaries>