31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<UserControl x:Class="Qrakhen.Qamp.Editor.Controls.EditorFrame"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:local="clr-namespace:Qrakhen.Qamp.Editor.Controls"
|
|
mc:Ignorable="d"
|
|
Background="#161718"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
|
|
<ScrollViewer VerticalScrollBarVisibility="Auto"
|
|
HorizontalScrollBarVisibility="Auto">
|
|
<ItemsControl ItemsSource="{Binding Lines}">
|
|
|
|
<ItemsControl.ItemsPanel>
|
|
<ItemsPanelTemplate>
|
|
<VirtualizingStackPanel IsItemsHost="True" />
|
|
</ItemsPanelTemplate>
|
|
</ItemsControl.ItemsPanel>
|
|
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate>
|
|
<local:LineRenderer LineBuffer="{Binding}" />
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
|
|
</ItemsControl>
|
|
</ScrollViewer>
|
|
|
|
</UserControl>
|