|
@@ -1,14 +1,16 @@
|
|
|
-<Page x:Class="ProjectAnalogParus.AccrualsPage"
|
|
|
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
+<Page x:Class="ProjectAnalogParus.AccrualsPage"
|
|
|
+ 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:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
xmlns:local="clr-namespace:ProjectAnalogParus"
|
|
|
+
|
|
|
mc:Ignorable="d"
|
|
|
d:DesignHeight="450" d:DesignWidth="800"
|
|
|
Title="AccrualsPage" Loaded="LoadedWindows">
|
|
|
|
|
|
- <Grid>
|
|
|
+ <Grid Margin="0,0,10,10">
|
|
|
+
|
|
|
|
|
|
<DataGrid Name="Acctualsgrid" HorizontalAlignment="Left" AutoGenerateColumns="False" Height="188" Margin="10,74,0,0" VerticalAlignment="Top" Width="780" >
|
|
|
|
|
@@ -21,8 +23,13 @@
|
|
|
<DataGridTextColumn Binding="{Binding Encouragement.NameTypeEncouragement}" Header="Поощрение" Width="3*" />
|
|
|
<DataGridTextColumn Binding="{Binding Amount}" Header="Сумма" Width="3*" />
|
|
|
</DataGrid.Columns>
|
|
|
+
|
|
|
</DataGrid>
|
|
|
+
|
|
|
+
|
|
|
<Button Content="Экспорт Excel" HorizontalAlignment="Left" Margin="51,285,0,0" VerticalAlignment="Top" Width="97" Click="ExcelClick"/>
|
|
|
+ <TextBox x:Name="TxtSearch" TextChanged="TxtSearch_TextChanged" HorizontalAlignment="Left" Height="24" Margin="105,31,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="170"/>
|
|
|
+ <TextBlock HorizontalAlignment="Left" Margin="26,31,0,0" TextWrapping="Wrap" Text="Поиск" VerticalAlignment="Top" Height="24" Width="74"/>
|
|
|
</Grid>
|
|
|
|
|
|
</Page>
|