mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Sidebar - Streamlined design Sidebar - Increase width on wide window sizes Profile editor - Implement File and Help menus
28 lines
1.7 KiB
XML
28 lines
1.7 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:Artemis.UI.Screens.ProfileEditor.Properties"
|
|
xmlns:timeline="clr-namespace:Artemis.UI.Screens.ProfileEditor.Properties.Timeline"
|
|
xmlns:shared="clr-namespace:Artemis.UI.Shared;assembly=Artemis.UI.Shared"
|
|
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
|
x:Class="Artemis.UI.Screens.ProfileEditor.Properties.Timeline.TimelineView"
|
|
x:DataType="timeline:TimelineViewModel">
|
|
<UserControl.Resources>
|
|
</UserControl.Resources>
|
|
<Grid Background="Transparent" PointerReleased="InputElement_OnPointerReleased" Focusable="True" MinWidth="{Binding MinWidth}">
|
|
<Grid.KeyBindings>
|
|
<KeyBinding Command="{Binding DeleteKeyframes}" Gesture="Delete" />
|
|
</Grid.KeyBindings>
|
|
<ItemsControl Items="{CompiledBinding PropertyGroupViewModels}">
|
|
<ItemsControl.ItemTemplate>
|
|
<TreeDataTemplate DataType="{x:Type local:PropertyGroupViewModel}" ItemsSource="{CompiledBinding Children}">
|
|
<ContentControl Content="{CompiledBinding TimelineGroupViewModel}" />
|
|
</TreeDataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
<shared:SelectionRectangle Name="SelectionRectangle" InputElement="{CompiledBinding $parent}" SelectionFinished="SelectionRectangle_OnSelectionFinished" />
|
|
</Grid>
|
|
|
|
|
|
</UserControl> |