|
@@ -5,12 +5,12 @@
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
xmlns:local="clr-namespace:BuzuevaDemo.Pages"
|
|
|
mc:Ignorable="d"
|
|
|
- d:DesignHeight="450" d:DesignWidth="800"
|
|
|
- Title="Агенты">
|
|
|
+ d:DesignHeight="450"
|
|
|
+ Title="Агенты" Width="918">
|
|
|
<Page.Resources>
|
|
|
<DataTemplate x:Key="AllAgent">
|
|
|
<Border BorderThickness="1" BorderBrush="Black" Width="600">
|
|
|
- <StackPanel Orientation="Horizontal">
|
|
|
+ <StackPanel Orientation="Horizontal" MouseLeftButtonDown="PerexodCreate">
|
|
|
<Image Source="{Binding Logo}" Width="80" Height="80"/>
|
|
|
<StackPanel Orientation="Vertical">
|
|
|
<StackPanel Orientation="Horizontal">
|
|
@@ -35,16 +35,31 @@
|
|
|
</Page.Resources>
|
|
|
<Grid>
|
|
|
<Grid.RowDefinitions>
|
|
|
- <RowDefinition Height="64*"/>
|
|
|
+ <RowDefinition Height="64"/>
|
|
|
<RowDefinition Height="363*"/>
|
|
|
<RowDefinition Height="23*"/>
|
|
|
</Grid.RowDefinitions>
|
|
|
- <StackPanel Orientation="Horizontal" Grid.Row="0" HorizontalAlignment="Stretch" VerticalAlignment="Center" Background="#C6D7FF">
|
|
|
+ <StackPanel Orientation="Horizontal" Grid.Row="0" HorizontalAlignment="Stretch" VerticalAlignment="Center" Background="#C6D7FF" >
|
|
|
<GroupBox Header="Введите для поиска" Width="300">
|
|
|
- <TextBox Height="40"/>
|
|
|
+ <TextBox x:Name="poisk" Height="40" TextChanged="Changeg" />
|
|
|
</GroupBox>
|
|
|
- <ComboBox Width="200" Margin="10, 5" Height="40"/>
|
|
|
- <ComboBox Width="200" Margin="10, 5" Height="40"/>
|
|
|
+ <ComboBox x:Name="sort" Width="200" Margin="10, 5" Height="40">
|
|
|
+ <TextBlock>Наименование (возр.)</TextBlock>
|
|
|
+ <TextBlock>Наименование (убыв.)</TextBlock>
|
|
|
+ <TextBlock>Размер скидки (возр.)</TextBlock>
|
|
|
+ <TextBlock>Размер скидки (убыв.)</TextBlock>
|
|
|
+ <TextBlock>Приоритет агента (возр.)</TextBlock>
|
|
|
+ <TextBlock>Приоритет агента (убыв.)</TextBlock>
|
|
|
+ </ComboBox>
|
|
|
+ <ComboBox x:Name="filt" Width="200" Margin="10, 5" Height="40" >
|
|
|
+ <TextBlock>Все типы</TextBlock>
|
|
|
+ <TextBlock>МФО</TextBlock>
|
|
|
+ <TextBlock>ПАО</TextBlock>
|
|
|
+ <TextBlock>ООО</TextBlock>
|
|
|
+ <TextBlock>ЗАО</TextBlock>
|
|
|
+ <TextBlock>ОАО</TextBlock>
|
|
|
+ <TextBlock>MKK</TextBlock>
|
|
|
+ </ComboBox>
|
|
|
</StackPanel>
|
|
|
<ListBox Grid.Row="1" x:Name="AllAgent" ItemTemplate="{StaticResource AllAgent}" />
|
|
|
</Grid>
|