31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
<Window x:Class="Qrakhen.Qamp.Editor.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
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:Qrakhen.Qamp.Editor"
|
|
xmlns:vm="clr-namespace:Qrakhen.Qamp.Editor.ViewModel"
|
|
xmlns:controls="clr-namespace:Qrakhen.Qamp.Editor.Controls"
|
|
mc:Ignorable="d"
|
|
d:DataContext="{d:DesignInstance Type=vm:FileViewModel}"
|
|
Title="MainWindow" Height="450" Width="800">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="50" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<ListBox Grid.Column="0"
|
|
ItemsSource="{Binding Lines.Count}"
|
|
IsHitTestVisible="False"
|
|
Background="#252525" Foreground="#707070"
|
|
BorderThickness="0"
|
|
Padding="0,0,5,0"
|
|
VerticalContentAlignment="Top"
|
|
HorizontalContentAlignment="Right"/>
|
|
|
|
<controls:EditorFrame Grid.Column="1" />
|
|
|
|
</Grid>
|
|
</Window>
|