25 lines
1.2 KiB
XML
25 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<UserControl
|
|
x:Class="Hyperbar.Widget.Windows.WidgetView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:interactions="using:Microsoft.Xaml.Interactions.Core"
|
|
xmlns:interactivity="using:Microsoft.Xaml.Interactivity">
|
|
<ItemsControl ItemTemplateSelector="{Binding ViewModelTemplateSelector}" ItemsSource="{Binding Mode=TwoWay}">
|
|
<ItemsControl.ItemsPanel>
|
|
<ItemsPanelTemplate>
|
|
<StackPanel Orientation="Horizontal" Spacing="8" />
|
|
</ItemsPanelTemplate>
|
|
</ItemsControl.ItemsPanel>
|
|
<ItemsControl.ItemContainerTransitions>
|
|
<TransitionCollection>
|
|
<AddDeleteThemeTransition />
|
|
</TransitionCollection>
|
|
</ItemsControl.ItemContainerTransitions>
|
|
<interactivity:Interaction.Behaviors>
|
|
<interactions:EventTriggerBehavior EventName="Loaded">
|
|
<interactions:InvokeCommandAction Command="{Binding InitializeCommand}" />
|
|
</interactions:EventTriggerBehavior>
|
|
</interactivity:Interaction.Behaviors>
|
|
</ItemsControl>
|
|
</UserControl> |