mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
61 lines
3 KiB
Text
61 lines
3 KiB
Text
|
<UserControl
|
||
|
x:Class="MSFSPopoutPanelManager.MainApp.PopOutPanelList"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:c="clr-namespace:CalcBinding;assembly=CalcBinding"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:dd="clr-namespace:GongSolutions.Wpf.DragDrop;assembly=GongSolutions.Wpf.DragDrop"
|
||
|
xmlns:local="clr-namespace:MSFSPopoutPanelManager.MainApp"
|
||
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
mc:Ignorable="d">
|
||
|
<UserControl.Resources>
|
||
|
<local:DummyConverter x:Key="DummyConverter" />
|
||
|
</UserControl.Resources>
|
||
|
<ScrollViewer
|
||
|
Height="350"
|
||
|
materialDesign:ScrollViewerAssist.IsAutoHideEnabled="True"
|
||
|
HorizontalScrollBarVisibility="Hidden"
|
||
|
VerticalScrollBarVisibility="Auto">
|
||
|
<ListView
|
||
|
x:Name="PopOutPanelCardList"
|
||
|
Height="Auto"
|
||
|
Margin="16,0,0,0"
|
||
|
Padding="0"
|
||
|
HorizontalAlignment="Left"
|
||
|
dd:DragDrop.IsDragSource="{c:Binding '!ProfileData.ActiveProfile.IsLocked'}"
|
||
|
dd:DragDrop.IsDropTarget="True"
|
||
|
dd:DragDrop.UseDefaultEffectDataTemplate="True"
|
||
|
ItemsSource="{Binding ProfileData.ActiveProfile.PanelConfigs, Mode=TwoWay}">
|
||
|
<ListView.ItemTemplate>
|
||
|
<DataTemplate>
|
||
|
<local:PopOutPanelCard Height="Auto" DataItem="{Binding '', Converter={StaticResource DummyConverter}}" />
|
||
|
</DataTemplate>
|
||
|
</ListView.ItemTemplate>
|
||
|
<ListView.ItemContainerStyle>
|
||
|
<Style TargetType="ListViewItem">
|
||
|
<Setter Property="Background" Value="Transparent" />
|
||
|
<Setter Property="BorderBrush" Value="Transparent" />
|
||
|
<Setter Property="VerticalContentAlignment" Value="Center" />
|
||
|
<Setter Property="Template">
|
||
|
<Setter.Value>
|
||
|
<ControlTemplate TargetType="ListViewItem">
|
||
|
<Border
|
||
|
Name="Border"
|
||
|
Background="{TemplateBinding Background}"
|
||
|
BorderBrush="{TemplateBinding BorderBrush}"
|
||
|
BorderThickness="{TemplateBinding BorderThickness}">
|
||
|
<ContentPresenter
|
||
|
Margin="{TemplateBinding Padding}"
|
||
|
Content="{TemplateBinding Content}"
|
||
|
ContentTemplate="{TemplateBinding ContentTemplate}" />
|
||
|
</Border>
|
||
|
</ControlTemplate>
|
||
|
</Setter.Value>
|
||
|
</Setter>
|
||
|
</Style>
|
||
|
</ListView.ItemContainerStyle>
|
||
|
</ListView>
|
||
|
</ScrollViewer>
|
||
|
</UserControl>
|