11 lines
511 B
XML
11 lines
511 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:in="clr-namespace:Common.UI.Infrastructure"
|
|
StartupUri="MainWindow.xaml">
|
|
<Application.Resources>
|
|
<in:TaskStateToForegroundBrushConverter x:Key="TaskStateToFG" />
|
|
<in:TaskStateToBackgroundBrushConverter x:Key="TaskStateToBG" />
|
|
</Application.Resources>
|
|
</Application>
|