Skip to content

Commit

Permalink
Updated layout of Utilities.xaml view
Browse files Browse the repository at this point in the history
  • Loading branch information
marcin-przywoski committed Feb 19, 2024
1 parent 21dce3f commit df76a41
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions ExportViewer.GUI/Views/Utilities.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:vm="clr-namespace:ExportViewer.GUI.ViewModels"
d:DesignHeight="500"
d:DesignWidth="600"
d:DesignHeight="450"
d:DesignWidth="800"
Background="{DynamicResource MaterialDesignPaper}"
mc:Ignorable="d">

<UserControl.DataContext>
<vm:UtilitiesViewModel />
</UserControl.DataContext>

<Grid>
<Grid Margin="10">
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="*" />
Expand Down Expand Up @@ -49,23 +49,28 @@
<TextBlock
Grid.ColumnSpan="5"
Margin="0,0,0,8"
FontSize="30"
Style="{StaticResource MaterialDesignHeadline5TextBlock}"
Text="Metadata fix" />
<TextBox
x:Name="SourceLocation"
Grid.Row="1"
Grid.ColumnSpan="14"
Margin="0,23,0,0"
Margin="0,23,0,15"
materialDesign:HintAssist.HelperText="Source location of the Facebook export"
materialDesign:HintAssist.HelperTextFontSize="15"
materialDesign:HintAssist.Hint="Source"
FontSize="20"
Text="{Binding Path=_utilitiesModel.SourcePath}" />
<TextBox
x:Name="DestinationLocation"
Grid.Row="2"
Grid.ColumnSpan="14"
Margin="0,23,0,0"
Margin="0,23,0,15"
materialDesign:HintAssist.HelperText="Destination of the media with fixed metadata"
materialDesign:HintAssist.HelperTextFontSize="15"
materialDesign:HintAssist.Hint="Destination"
FontSize="20"
Text="{Binding Path=_utilitiesModel.DestinationPath}" />
<Button
Grid.Row="4"
Expand All @@ -82,7 +87,7 @@
Grid.RowSpan="4"
Grid.Column="0"
Grid.ColumnSpan="14"
Height="200"
Height="240"
Padding="17,16,16,16"
Panel.ZIndex="-1"
materialDesign:HintAssist.Hint="Output from backend"
Expand Down

0 comments on commit df76a41

Please sign in to comment.