1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <Page x:Class="Demo1.Pages.PageAgentList"
- 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:Demo1.Pages"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="PageAgentList">
- <Page.Resources>
- <BitmapImage x:Key="defaultimage" UriSource="\img\picture.png"></BitmapImage>
- </Page.Resources>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="50">
- </RowDefinition>
- <RowDefinition>
- </RowDefinition>
- </Grid.RowDefinitions>
- <StackPanel Grid.Row="0" Orientation="Horizontal" HorizontalAlignment="Center">
- <TextBox x:Name="TBSearch" Margin="0,0,10,0" Height="30" Width="300" >Введите для поиска</TextBox>
- <ComboBox Name="CBSort" Height="30" Width="150" Margin="0,0,10,0"></ComboBox>
- <ComboBox Name="CBFilter" Height="30" Width="150"></ComboBox>
- </StackPanel>
-
- <ListView Name="LVAgents" Grid.Row="1" HorizontalAlignment="Center" >
- <ListView.ItemTemplate>
- <DataTemplate>
- <Border BorderBrush="Black" BorderThickness="1" Width="800">
- <StackPanel Orientation="Horizontal" >
- <Image Margin="5,0,0,0" Width="100" Height="100" Source="{Binding Logo}"/>
- <StackPanel Orientation="Vertical" Margin="20">
- <TextBlock ><TextBlock Text="{Binding AgentType.Title}"></TextBlock>| <TextBlock Text="{Binding Title}"></TextBlock> </TextBlock>
- <TextBlock Name="TBSales_Count" Loaded="TBSales_Count_Loaded" Uid="{Binding ID}"></TextBlock>
- <TextBlock Text="{Binding Phone}"></TextBlock>
- <TextBlock Text="{Binding Priority, StringFormat={} Приоритет:{0}}"></TextBlock>
- </StackPanel>
- </StackPanel>
- </Border>
- </DataTemplate>
- </ListView.ItemTemplate>
- </ListView>
-
- </Grid>
- </Page>
|