|
@@ -12,6 +12,7 @@
|
|
|
<Grid.RowDefinitions>
|
|
|
<RowDefinition Height="50"/>
|
|
|
<RowDefinition Height="*"/>
|
|
|
+ <RowDefinition Height="50"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
<StackPanel Grid.Row="0" VerticalAlignment="Center" HorizontalAlignment="Center" Orientation="Horizontal">
|
|
@@ -19,8 +20,7 @@
|
|
|
<TextBox Height="10" Width="236" Margin="10 0 0 0" Watermark="Поиск по логину" Text="{Binding DataOutputVM.FindLogin}"/>
|
|
|
<TextBox Height="10" Width="236" Margin="10 0 0 0" Watermark="Поиск по паролю" Text="{Binding DataOutputVM.FindPass}"/>
|
|
|
<ComboBox SelectedIndex="0" Width="236" Margin="10 0 0 0" ItemsSource="{Binding DataOutputVM.Sort}" SelectedItem="{Binding DataOutputVM.SelectedSort}"/>
|
|
|
- <Button Content="↻" Command="{Binding DataOutputVM.FillingUsersList}"/>
|
|
|
- <Button Content="На страницу генерации" Command="{Binding ViewGeneratePage}"/>
|
|
|
+
|
|
|
</StackPanel>
|
|
|
|
|
|
<ListBox Background="#F9F8FF" Grid.Row="1" ItemsSource="{Binding DataOutputVM.Userss}">
|
|
@@ -48,5 +48,10 @@
|
|
|
</DataTemplate>
|
|
|
</ListBox.ItemTemplate>
|
|
|
</ListBox>
|
|
|
+
|
|
|
+ <StackPanel Grid.Row="2" Orientation="Horizontal">
|
|
|
+ <Button Margin="10 0 0 0" HorizontalContentAlignment="Center" FontWeight="Bold" BorderBrush="Black" Background="White" Foreground="#545454" Content="↻" Command="{Binding DataOutputVM.FillingUsersList}"/>
|
|
|
+ <Button Margin="10 0 0 0" HorizontalContentAlignment="Center" FontWeight="Bold" BorderBrush="Black" Background="White" Foreground="#545454" Content="На страницу генерации" Command="{Binding ViewGeneratePage}"/>
|
|
|
+ </StackPanel>
|
|
|
</Grid>
|
|
|
</UserControl>
|