22 lines
1007 B
Plaintext
22 lines
1007 B
Plaintext
|
|
<ResourceDictionary
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
xmlns:controls="using:Wino.Mail.Controls"
|
||
|
|
xmlns:muxc="using:Microsoft.UI.Xaml.Controls">
|
||
|
|
|
||
|
|
<Style TargetType="controls:WebViewEditorControl">
|
||
|
|
<Style.Setters>
|
||
|
|
<Setter Property="Template">
|
||
|
|
<Setter.Value>
|
||
|
|
<ControlTemplate TargetType="controls:WebViewEditorControl">
|
||
|
|
<Grid CornerRadius="3">
|
||
|
|
<Grid Background="White" Visibility="{Binding RelativeSource={RelativeSource Mode=TemplatedParent}, Path=IsEditorDarkMode, Mode=OneWay, Converter={StaticResource ReverseBooleanToVisibilityConverter}}" />
|
||
|
|
<muxc:WebView2 x:Name="WebView" />
|
||
|
|
</Grid>
|
||
|
|
</ControlTemplate>
|
||
|
|
</Setter.Value>
|
||
|
|
</Setter>
|
||
|
|
</Style.Setters>
|
||
|
|
</Style>
|
||
|
|
</ResourceDictionary>
|