123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <Page x:Class="DemoExam.pgAgentsOutput"
- 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:DemoExam"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="pgAgentsOutput">
- <Page.Resources>
- <DataTemplate x:Key="agentTemplate">
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{Binding ID}"/>
- <Image Source="{Binding Img}" Width="100" Height="100"/>
- <StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{Binding StringFormat={}{0} |, Path=AgentType.Title}"/>
- <TextBlock Text="{Binding StringFormat={} {0}, Path=Title}"/>
- </StackPanel>
- <TextBlock Text="{Binding StringFormat={}{0} продаж за год, Path=SalesCount}"/>
- <TextBlock Text="{Binding Phone}"/>
- <TextBlock Text="{Binding StringFormat={}Приоритетность: {0}, Path=Priority}"/>
- </StackPanel>
- <TextBlock Text="{Binding StringFormat={}{0}%, Path=Discount}" HorizontalAlignment="Right"/>
- </StackPanel>
- </DataTemplate>
- </Page.Resources>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="70"/>
- <RowDefinition/>
- <RowDefinition Height="50"/>
- </Grid.RowDefinitions>
- <StackPanel Grid.Row="0" Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
- <TextBox x:Name="tbSearch" Width="200" TextChanged="tbSearch_TextChanged"/>
- <ComboBox x:Name="cbSort" Width="200" Margin="50 0 50 0" SelectionChanged="cbChanged"/>
- <ComboBox x:Name="cbFilter" Width="200" SelectionChanged="cbChanged"/>
- </StackPanel>
- <ScrollViewer Grid.Row="1">
- <StackPanel Grid.Row="1">
- <ListBox x:Name="lbAgents" ItemTemplate="{StaticResource agentTemplate}" Grid.Row="1" SelectionMode="Multiple" SelectionChanged="lbAgents_SelectionChanged"/>
- </StackPanel>
- </ScrollViewer>
- <StackPanel Grid.Row="2" Orientation="Horizontal" VerticalAlignment="Center">
- <Button x:Name="btnChangePriority" Content="Изменить приоритет на ..." Visibility="Hidden" Click="btnChangePriority_Click"/>
- </StackPanel>
- </Grid>
- </Page>
|