14 lines
805 B
XML
14 lines
805 B
XML
<Application x:Class="Common.UI.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:Infrastructure="clr-namespace:Common.UI.Infrastructure" >
|
|
<Application.Resources>
|
|
<Infrastructure:TaskStateToForegroundBrushConverter x:Key="TaskStateToFG" />
|
|
<Infrastructure:TaskStateToBackgroundBrushConverter x:Key="TaskStateToBG" />
|
|
<Infrastructure:BooleanToVisibilityConverter x:Key="BooleanToVisibility" />
|
|
<Infrastructure:BooleanToBackgroundConverter x:Key="BooleanToBackground" />
|
|
<Infrastructure:BooleanToBorderConverter x:Key="BooleanToBorder" />
|
|
<Infrastructure:VMLocator x:Key="VMLocator" />
|
|
</Application.Resources>
|
|
</Application>
|