mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
[TUI] Fix image information alignment.
This commit is contained in:
@@ -21,8 +21,7 @@
|
|||||||
Brush="Blue" />
|
Brush="Blue" />
|
||||||
</Border.BorderBrush>
|
</Border.BorderBrush>
|
||||||
<Grid RowDefinitions="*,Auto">
|
<Grid RowDefinitions="*,Auto">
|
||||||
<Grid ColumnDefinitions="*,*"
|
<Grid ColumnDefinitions="*,*" Grid.Row="0">
|
||||||
Grid.Row="0">
|
|
||||||
<ListBox Grid.Column="0"
|
<ListBox Grid.Column="0"
|
||||||
ItemsSource="{Binding Files, Mode=OneWay}"
|
ItemsSource="{Binding Files, Mode=OneWay}"
|
||||||
BorderThickness="1"
|
BorderThickness="1"
|
||||||
@@ -147,20 +146,18 @@
|
|||||||
</Border.BorderBrush>
|
</Border.BorderBrush>
|
||||||
<ScrollViewer>
|
<ScrollViewer>
|
||||||
<StackPanel VerticalAlignment="Top"
|
<StackPanel VerticalAlignment="Top"
|
||||||
HorizontalAlignment="Center">
|
HorizontalAlignment="Stretch">
|
||||||
<TextBlock Text="Image information"
|
<TextBlock Text="Image information"
|
||||||
Foreground="SlateBlue"
|
Foreground="SlateBlue"
|
||||||
FontWeight="Bold" />
|
FontWeight="Bold" HorizontalAlignment="Center" />
|
||||||
<TextBlock Text="{Binding SelectedFileInformation, Mode=OneWay}" />
|
<TextBlock Text="{Binding SelectedFileInformation, Mode=OneWay}" HorizontalAlignment="Left"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</ScrollViewer>
|
</ScrollViewer>
|
||||||
</Border>
|
</Border>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Border>
|
</Border>
|
||||||
</Grid>
|
</Grid>
|
||||||
<TextBlock Grid.Row="1"
|
<TextBlock Grid.Row="1" Text="{Binding Status, Mode=OneWay}" IsVisible="{Binding IsStatusVisible, Mode=OneWay}"/>
|
||||||
Text="{Binding Status, Mode=OneWay}"
|
|
||||||
IsVisible="{Binding IsStatusVisible, Mode=OneWay}" />
|
|
||||||
</Grid>
|
</Grid>
|
||||||
</Border>
|
</Border>
|
||||||
</DockPanel>
|
</DockPanel>
|
||||||
|
|||||||
Reference in New Issue
Block a user