diff options
author | sr55 <[email protected]> | 2019-06-16 20:48:07 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2019-06-16 20:48:07 +0100 |
commit | d3dbfba11a60e3e09e44447ab29b69aa6e171921 (patch) | |
tree | 3c677155187364f4b910e53ed6e66ba515ac3908 /win/CS/HandBrakeWPF/Views/ChaptersView.xaml | |
parent | 297d4abbeca9a580ba3701bc34b016ec3d57c44e (diff) |
WinGui: Few minor features + Early access to a new "Dark" theme. It's not yet complete but will give a general idea of the look and feel! (Can be toggled on in preferences)
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/ChaptersView.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/ChaptersView.xaml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Views/ChaptersView.xaml b/win/CS/HandBrakeWPF/Views/ChaptersView.xaml index f916ff503..e74a896dc 100644 --- a/win/CS/HandBrakeWPF/Views/ChaptersView.xaml +++ b/win/CS/HandBrakeWPF/Views/ChaptersView.xaml @@ -32,10 +32,13 @@ VerticalAlignment="Stretch" AutoGenerateColumns="False"
CanUserSortColumns="False" CanUserReorderColumns="False" CanUserResizeColumns="False" CanUserResizeRows="False"
CanUserAddRows="False" CanUserDeleteRows="False" HeadersVisibility="Column"
- HorizontalGridLinesBrush="#FFABADB3" VerticalGridLinesBrush="#FFABADB3">
+ HorizontalGridLinesBrush="#FFABADB3" VerticalGridLinesBrush="#FFABADB3"
+ Background="Transparent" SelectionMode="Single">
<DataGrid.CellStyle>
<Style TargetType="DataGridCell" BasedOn="{StaticResource {x:Type DataGridCell}}">
<Setter Property="MinHeight" Value="22" />
+ <Setter Property="BorderThickness" Value="0" />
+ <Setter Property="VerticalContentAlignment" Value="Center" />
</Style>
</DataGrid.CellStyle>
<DataGrid.ContextMenu>
|