123456789101112131415161718192021222324252627282930313233 |
- <Window
- 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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:Preview="clr-namespace:FastReport.Preview;assembly=FastReport.WPF" x:Class="CustomPreview.MainWindow"
- mc:Ignorable="d"
- Title="MainWindow" Height="800" Width="1200" UseLayoutRounding="True">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="200"/>
- <ColumnDefinition Width="*"/>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="40"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
- <ListBox x:Name="reportsList" SelectionChanged="reportsList_SelectionChanged" Grid.Row="1"/>
-
- <StackPanel Orientation="Horizontal" Grid.Column="1">
- <Button Content="Print" Command="{Binding ElementName=previewControl,Path=cmdPrint}" Width="70" Height="20" Margin="10,10,5,10"/>
- <Button Content="Export to PDF" Click="ExportToPDF_Click" Width="90" Height="20" Margin="5,10,5,10"/>
- <Button Content="<<" Command="{Binding ElementName=previewControl,Path=cmdFirst}" Width="20" Height="20" Margin="50,10,5,10"/>
- <Button Content="<" Command="{Binding ElementName=previewControl,Path=cmdPrior}" Width="20" Height="20" Margin="5,10,5,10"/>
- <TextBox Text="{Binding ElementName=previewControl,Path=PageNo}" Width="50" Height="20" Margin="5,10,5,10"/>
- <Button Content=">" Command="{Binding ElementName=previewControl,Path=cmdNext}" Width="20" Height="20" Margin="5,10,5,10"/>
- <Button Content=">>" Command="{Binding ElementName=previewControl,Path=cmdLast}" Width="20" Height="20" Margin="5,10,5,10"/>
- </StackPanel>
- <Preview:WpfPreviewControl x:Name="previewControl" Grid.Column="1" Grid.Row="1" ToolbarVisible="False" />
- </Grid>
- </Window>
|