Files
Lattice/Lattice.UI.DragDrop.WinUI/Themes/Generic.xaml

23 lines
1.1 KiB
XML

<!--
Generic.xaml - Основной словарь ресурсов для компонентов drag-and-drop.
Объединяет все стили и предоставляет алиасы для обратной совместимости.
-->
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<ResourceDictionary.MergedDictionaries>
<!-- Стили компонентов DragDrop -->
<ResourceDictionary Source="DragAdorner.xaml" />
<ResourceDictionary Source="DropPreviewAdorner.xaml" />
<ResourceDictionary Source="DragDropStyles.xaml" />
</ResourceDictionary.MergedDictionaries>
<!-- Алиасы для обратной совместимости -->
<Style x:Key="DragEnabledStyle" TargetType="Control"
BasedOn="{StaticResource Lattice.DragDrop.DragSourceStyle}" />
<Style x:Key="DropTargetStyle" TargetType="Control"
BasedOn="{StaticResource Lattice.DragDrop.DropTargetStyle}" />
</ResourceDictionary>