1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <Page x:Class="MyMoviesWPF.MVVM.View.Pages.CatalogPage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:MyMoviesWPF.MVVM.View.Pages"
- mc:Ignorable="d"
- d:DesignHeight="900" d:DesignWidth="1600"
- Title="CatalogPage">
- <Grid>
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
- <!--<DataGrid Template="{DynamicResource DataGridTemplate1}" Style="{DynamicResource MaterialDesignDataGrid}" ></DataGrid>-->
- <DataGrid ItemsSource="{Binding MoviesCollection}" SelectedItem="{Binding OpenMovieWindow}" HeadersVisibility="None"
- Width="256" IsReadOnly="True" AutoGenerateColumns="False" BorderBrush = "Transparent" Background = "Transparent" RowBackground = "Transparent">
- <DataGrid.LayoutTransform>
- <TransformGroup>
- <RotateTransform Angle="90"/>
- <MatrixTransform Matrix="-1,0,0,1,0,0"/>
- </TransformGroup>
- </DataGrid.LayoutTransform>
- <DataGrid.ColumnHeaderStyle>
- <Style TargetType="{x:Type DataGridColumnHeader}"
- BasedOn="{StaticResource {x:Type DataGridColumnHeader}}">
- <Setter Property="LayoutTransform">
- <Setter.Value>
- <TransformGroup>
- <RotateTransform Angle="-90"/>
- <ScaleTransform ScaleX="1" ScaleY="-1" />
- </TransformGroup>
- </Setter.Value>
- </Setter>
- </Style>
- </DataGrid.ColumnHeaderStyle>
- <DataGrid.CellStyle>
- <Style TargetType="DataGridCell">
- <Setter Property="LayoutTransform">
- <Setter.Value>
- <TransformGroup>
- <RotateTransform Angle="-90"/>
- <ScaleTransform ScaleX="1" ScaleY="-1" />
- </TransformGroup>
- </Setter.Value>
- </Setter>
- </Style>
- </DataGrid.CellStyle>
- <DataGrid.Columns>
- <DataGridTemplateColumn Header="File Type" Width="200">
- <DataGridTemplateColumn.CellTemplate>
- <DataTemplate>
- <Image Height="200" Width="200" Source="{Binding Image}" Stretch="Uniform" />
- </DataTemplate>
- </DataGridTemplateColumn.CellTemplate>
- </DataGridTemplateColumn>
- <DataGridTextColumn Header="Название" Binding="{Binding Name}" IsReadOnly="True"></DataGridTextColumn>
- </DataGrid.Columns>
- </DataGrid>
- <!--<Button Height="128" Width="128" Command="{Binding OpenMovieWindow, Mode=OneWay}" Cursor="Hand">
- <Button.Template>
- <ControlTemplate>
- <Image Source="https://media.discordapp.net/attachments/987064912704573583/987066526106521670/unknown.png"></Image>
- </ControlTemplate>
- </Button.Template>
- </Button>-->
- <!--<DataGrid IsReadOnly="True"
- ItemsSource="{Binding MoviesCollection}" SelectedItem="{Binding OpenMovieWindow}">
- <DataGrid.Columns>
- <DataGridTextColumn Header="Название" Binding="{Binding Name}" IsReadOnly="True"></DataGridTextColumn>
- </DataGrid.Columns>
- </DataGrid>-->
- </StackPanel>
- <!--<ContentControl
- HorizontalAlignment="Center" VerticalAlignment="Top"
- Content="{Binding CurrentControlView}" />-->
- </Grid>
- </Page>
|