39 lines
1.5 KiB
XML
39 lines
1.5 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"
|
|
Focusable="True"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
|
|
<UserControl.Style>
|
|
<Style TargetType="{x:Type local:EditorFrame}">
|
|
<Setter Property="CursorPosition" Value="{Binding CursorPosition}" />
|
|
</Style>
|
|
</UserControl.Style>
|
|
|
|
<ScrollViewer x:Name="ScrollView"
|
|
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>
|