16 lines
689 B
XML
16 lines
689 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<ResourceDictionary
|
||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
>
|
||
|
||
<Style x:Key="LatticeNotificationStyle" TargetType="InfoBar">
|
||
<Setter Property="Margin" Value="12,4" />
|
||
<Setter Property="CornerRadius" Value="8" />
|
||
<Setter Property="IsIconVisible" Value="True" />
|
||
<!-- В 2026 году используем полупрозрачность Acrylic для уведомлений -->
|
||
<Setter Property="Background" Value="{ThemeResource SystemControlAcrylicElementBrush}" />
|
||
</Style>
|
||
|
||
</ResourceDictionary>
|