12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <Page x:Class="DemoShelest.Pages.AdminList"
- 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:DemoShelest.Pages"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="AdminList">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="60"/>
- <RowDefinition/>
- </Grid.RowDefinitions>
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
- <StackPanel>
- <TextBlock Margin="7,0">Поиск</TextBlock>
- <TextBox Name="TBPoisk" Width="250" Height="30" Margin="7,0"></TextBox>
- </StackPanel>
- <StackPanel>
- <TextBlock HorizontalAlignment="Center">Сортировка</TextBlock>
- <ComboBox Name="CBSort" Height="30" Width="110" Margin="7,0"></ComboBox>
- </StackPanel>
- <StackPanel>
- <TextBlock HorizontalAlignment="Center">Фильтрация</TextBlock>
- <ComboBox Name="CBFilt" Height="30" Width="110" Margin="7,0"></ComboBox>
- </StackPanel>
- </StackPanel>
- <ListView Grid.Row="1" Name="Agent">
- <ListView.ItemsPanel>
- <ItemsPanelTemplate>
- <WrapPanel></WrapPanel>
- </ItemsPanelTemplate>
- </ListView.ItemsPanel>
- <ListView.ItemTemplate>
- <DataTemplate>
- <Grid>
- <StackPanel Orientation="Horizontal">
- <Image/>
- <StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Name="TBType">Тип</TextBlock>
- <TextBlock Margin="7,0">|</TextBlock>
- <TextBlock Name="TBTitle" Text="{Binding }">Наименование</TextBlock>
- </StackPanel>
- <TextBlock Name="TBAge" Text="{Binding }">Продаж за год</TextBlock>
- <TextBlock Name="TBPhone" Text="{Binding }"></TextBlock>
- <TextBlock Name="TBPrior" Text="{Binding}">Приоритетсность:</TextBlock>
- </StackPanel>
- </StackPanel>
- </Grid>
- </DataTemplate>
- </ListView.ItemTemplate>
- </ListView>
- </Grid>
- </Page>
|