mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-11 09:49:07 +00:00
28 lines
1.3 KiB
XML
28 lines
1.3 KiB
XML
<UserControl x:Class="QuickLook.Plugin.CsvViewer.CsvViewerPanel"
|
|
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:local="clr-namespace:QuickLook.Plugin.CsvViewer"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
x:Name="csvViewer"
|
|
d:DesignHeight="300"
|
|
d:DesignWidth="300"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<DataGrid x:Name="dataGrid"
|
|
AlternatingRowBackground="#1900BFFF"
|
|
AlternationCount="2"
|
|
AutoGenerateColumns="False"
|
|
Background="Transparent"
|
|
BorderThickness="0"
|
|
CanUserReorderColumns="False"
|
|
Foreground="{DynamicResource WindowTextForeground}"
|
|
HeadersVisibility="None"
|
|
HorizontalGridLinesBrush="#19000000"
|
|
IsReadOnly="True"
|
|
ItemsSource="{Binding Path=Rows, ElementName=csvViewer}"
|
|
RowBackground="Transparent"
|
|
VerticalGridLinesBrush="#19000000" />
|
|
</Grid>
|
|
</UserControl>
|