mirror of
https://github.com/holgerb83/ModernWpfPlayground.git
synced 2025-04-20 15:13:51 +02:00
25 lines
1.2 KiB
XML
25 lines
1.2 KiB
XML
<dryIoc:PrismApplication
|
|
x:Class="ModernWpfPlayground.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:dryIoc="http://prismlibrary.com/"
|
|
xmlns:ui="http://schemas.modernwpf.com/2019">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ui:ThemeResources />
|
|
<ui:IntellisenseResources Source="/ModernWpf;component/DesignTime/DesignTimeResources.xaml" />
|
|
<ui:XamlControlsResources />
|
|
<ResourceDictionary>
|
|
<Style BasedOn="{StaticResource {x:Type TextBox}}" TargetType="TextBox">
|
|
<Style.Triggers>
|
|
<Trigger Property="IsReadOnly" Value="True">
|
|
<Setter Property="Background" Value="{DynamicResource SystemControlDisabledChromeMediumLowBrush}" />
|
|
</Trigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
</ResourceDictionary>
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</dryIoc:PrismApplication> |