mirror of
https://gitcode.com/gh_mirrors/se/Semi.Avalonia
synced 2026-03-11 12:10:48 +08:00
109 lines
5.5 KiB
XML
109 lines
5.5 KiB
XML
<ResourceDictionary
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:collections="clr-namespace:System.Collections;assembly=netstandard">
|
|
<!-- Add Resources Here -->
|
|
<ControlTheme x:Key="{x:Type DataValidationErrors}" TargetType="DataValidationErrors">
|
|
<Setter Property="Template">
|
|
<ControlTemplate TargetType="DataValidationErrors">
|
|
<DockPanel LastChildFill="True">
|
|
<ContentControl
|
|
x:Name="InlineDataValidationContentControl"
|
|
Margin="0,4,0,0"
|
|
Content="{Binding (DataValidationErrors.Errors)}"
|
|
ContentTemplate="{TemplateBinding ErrorTemplate}"
|
|
DataContext="{TemplateBinding Owner}"
|
|
DockPanel.Dock="Bottom"
|
|
IsVisible="{Binding (DataValidationErrors.HasErrors)}" />
|
|
<ContentPresenter
|
|
Name="PART_ContentPresenter"
|
|
Padding="{TemplateBinding Padding}"
|
|
Background="{TemplateBinding Background}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
Content="{TemplateBinding Content}"
|
|
ContentTemplate="{TemplateBinding ContentTemplate}"
|
|
CornerRadius="{TemplateBinding CornerRadius}" />
|
|
</DockPanel>
|
|
</ControlTemplate>
|
|
</Setter>
|
|
<Setter Property="ErrorTemplate">
|
|
<DataTemplate>
|
|
<ItemsControl
|
|
x:DataType="DataValidationErrors"
|
|
Foreground="{DynamicResource DataValidationErrorsForeground}"
|
|
ItemsSource="{Binding}">
|
|
<ItemsControl.Styles>
|
|
<Style Selector="TextBlock">
|
|
<Setter Property="TextWrapping" Value="Wrap" />
|
|
</Style>
|
|
</ItemsControl.Styles>
|
|
</ItemsControl>
|
|
</DataTemplate>
|
|
</Setter>
|
|
</ControlTheme>
|
|
<ControlTheme x:Key="SilentDataValidationErrors" TargetType="DataValidationErrors">
|
|
<Setter Property="Template">
|
|
<ControlTemplate TargetType="DataValidationErrors">
|
|
<ContentPresenter
|
|
Name="PART_ContentPresenter"
|
|
Padding="{TemplateBinding Padding}"
|
|
Background="{TemplateBinding Background}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
Content="{TemplateBinding Content}"
|
|
ContentTemplate="{TemplateBinding ContentTemplate}"
|
|
CornerRadius="{TemplateBinding CornerRadius}" />
|
|
</ControlTemplate>
|
|
</Setter>
|
|
</ControlTheme>
|
|
|
|
<ControlTheme x:Key="TooltipDataValidationErrors" TargetType="DataValidationErrors">
|
|
<Setter Property="Template">
|
|
<ControlTemplate TargetType="DataValidationErrors">
|
|
<DockPanel LastChildFill="True">
|
|
<ContentControl
|
|
Content="{Binding (DataValidationErrors.Errors)}"
|
|
ContentTemplate="{TemplateBinding ErrorTemplate}"
|
|
DataContext="{TemplateBinding Owner}"
|
|
DockPanel.Dock="Right"
|
|
IsVisible="{Binding (DataValidationErrors.HasErrors)}" />
|
|
<ContentPresenter
|
|
Name="PART_ContentPresenter"
|
|
Padding="{TemplateBinding Padding}"
|
|
Background="{TemplateBinding Background}"
|
|
BorderBrush="{TemplateBinding BorderBrush}"
|
|
BorderThickness="{TemplateBinding BorderThickness}"
|
|
Content="{TemplateBinding Content}"
|
|
ContentTemplate="{TemplateBinding ContentTemplate}"
|
|
CornerRadius="{TemplateBinding CornerRadius}" />
|
|
</DockPanel>
|
|
</ControlTemplate>
|
|
</Setter>
|
|
<Setter Property="ErrorTemplate">
|
|
<DataTemplate>
|
|
<Panel Name="PART_InlineErrorTemplatePanel" Background="Transparent">
|
|
<Panel.Styles>
|
|
<Style Selector="Panel#PART_InlineErrorTemplatePanel">
|
|
<Setter Property="Margin" Value="8,0" />
|
|
</Style>
|
|
<Style Selector="Panel#PART_InlineErrorTemplatePanel ToolTip">
|
|
<Setter Property="BorderBrush" Value="{DynamicResource DataValidationErrorsForeground}" />
|
|
</Style>
|
|
<Style Selector="Panel#PART_InlineErrorTemplatePanel ToolTip TextBlock">
|
|
<Setter Property="TextWrapping" Value="Wrap" />
|
|
</Style>
|
|
</Panel.Styles>
|
|
<ToolTip.Tip>
|
|
<ItemsControl x:DataType="collections:IEnumerable" ItemsSource="{Binding}" />
|
|
</ToolTip.Tip>
|
|
<Path
|
|
Width="14"
|
|
Height="14"
|
|
Data="M14,7 A7,7 0 0,0 0,7 M0,7 A7,7 0 1,0 14,7 M7,3l0,5 M7,9l0,2"
|
|
Stroke="{DynamicResource DataValidationErrorsForeground}"
|
|
StrokeThickness="2" />
|
|
</Panel>
|
|
</DataTemplate>
|
|
</Setter>
|
|
</ControlTheme>
|
|
</ResourceDictionary>
|