19 lines
845 B
XML
19 lines
845 B
XML
<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> |