Reuxables フリー スタイルをダウンロードし、リソース ディクショナリとして App.xaml に追加しました。また、バリデータ テンプレートを含む独自のリソース ディクショナリも追加しました。
問題は、バリデータ テンプレートにスタイル ターゲット タイプを追加してオブジェクトのタイプをターゲットにすると、そのタイプのオブジェクトが Reuxables ライブラリからスタイルを失うことです。
これは私の App.xaml です:
<Application x:Class="App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/ReuxablesLegacy;component/edge.xaml" />
<ResourceDictionary Source="Themes/Validator.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
そして、これは私のバリデータ リソース ディクショナリです。
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:conv="clr-namespace:WPFLibrary.Converters;assembly=WPFLibrary">
<conv:ErrorListConverter x:Key="errorListConverter" />
<Style x:Key="myValidatorTemplate" TargetType="Control">
<!-- If return from converter is 'true' (where converter is handed a dictionary and property name) then set the border and tooltip accordingly -->
<Style.Triggers>
<DataTrigger Value="true">
<DataTrigger.Binding>
<MultiBinding Converter="{StaticResource errorListConverter}" ConverterParameter="EXISTS" >
<Binding Path="ErrorList" />
<Binding RelativeSource="{RelativeSource Self}" Path="Tag" />
</MultiBinding>
</DataTrigger.Binding>
<Setter Property="BorderThickness" Value="1" />
<Setter Property="BorderBrush" Value="Red" />
<Setter Property="ToolTip" >
<Setter.Value>
<MultiBinding Converter="{StaticResource errorListConverter}" ConverterParameter="VALUE" >
<Binding Path="ErrorList" />
<Binding RelativeSource="{RelativeSource Self}" Path="Tag" />
</MultiBinding>
</Setter.Value>
</Setter>
</DataTrigger>
</Style.Triggers>
</Style>
<!--List the control types that should be able to display validation errors-->
<Style TargetType="TextBox" BasedOn="{StaticResource myValidatorTemplate}" />
<Style TargetType="ComboBox" BasedOn="{StaticResource myValidatorTemplate}" />
<Style TargetType="DatePicker" BasedOn="{StaticResource myValidatorTemplate}" />
<Style TargetType="DataGrid" BasedOn="{StaticResource myValidatorTemplate}" />
<Style TargetType="DataGridCell" BasedOn="{StaticResource myValidatorTemplate}" />
<Style TargetType="GroupBox" BasedOn="{StaticResource myValidatorTemplate}" />
<Style TargetType="TabItem" BasedOn="{StaticResource myValidatorTemplate}" />
</ResourceDictionary>
テキストボックス、コンボボックス、日付ピッカー、データグリッド、グループボックス、およびタブアイテムにバリデーターを適用しているため、これらはすべて Reuxables Edge スタイルを失いました。
解決策に感謝します。ありがとう!