46 lines
1.9 KiB
XML
46 lines
1.9 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="*" />
|
|
<ColumnDefinition Width="5*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid Grid.Column="1">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="5*" />
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<Grid Grid.Row="0">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="32" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<ListBox Grid.Column="0"
|
|
ItemsSource="{Binding Lines.Count}"
|
|
IsHitTestVisible="False"
|
|
Background="#242628"
|
|
Foreground="#969696"
|
|
BorderThickness="0"
|
|
Padding="0,0,5,0"
|
|
VerticalContentAlignment="Top"
|
|
HorizontalContentAlignment="Right"/>
|
|
|
|
<controls:EditorFrame Grid.Column="1" />
|
|
</Grid>
|
|
<Grid Grid.Row="1" Background="#161718">
|
|
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|