123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- <UserControl xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d" d:DesignWidth="1550" d:DesignHeight="800.5"
- xmlns:vm="using:Acosta.ViewModels"
- x:DataType="vm:MainWindowViewModel"
- x:Class="Acosta.Views.OutletsView">
- <Grid>
- <StackPanel Height="50" Background="#E40714" VerticalAlignment="Top">
- <StackPanel.Styles>
- <Style Selector="TextBlock.headerLogo">
- <Setter Property="Foreground" Value="#F5F5F5"></Setter>
- <Setter Property="FontFamily" Value="Roboto"></Setter>
- <Setter Property="FontWeight" Value="Regular"></Setter>
- <Setter Property="FontSize" Value="35"></Setter>
- <Setter Property="Margin" Value="30 0 0 0"></Setter>
- </Style>
- <Style Selector="TextBlock.greeting">
- <Setter Property="Foreground" Value="#F5F5F5"></Setter>
- <Setter Property="FontFamily" Value="Roboto"></Setter>
- <Setter Property="FontWeight" Value="Medium"></Setter>
- <Setter Property="FontSize" Value="16"></Setter>
- </Style>
- <Style Selector="Button.headerBt">
- <Setter Property="Background" Value="Transparent"></Setter>
- <Setter Property="Foreground" Value="#F5F5F5"></Setter>
- <Setter Property="FontFamily" Value="Roboto"></Setter>
- <Setter Property="FontSize" Value="16"></Setter>
- <Setter Property="FontWeight" Value="Medium"></Setter>
- </Style>
- <Style Selector="Button.headerBt:pointerover /template/ ContentPresenter">
- <Setter Property="Background" Value="Transparent"></Setter>
- <Setter Property="Foreground" Value="#D5AFAF"></Setter>
- <Setter Property="FontWeight" Value="Medium"></Setter>
- <Setter Property="FontSize" Value="16"></Setter>
- </Style>
- <Style Selector="Button.headerBt:pressed">
- <Setter Property="RenderTransform" Value="none"/>
- </Style>
- </StackPanel.Styles>
- <StackPanel Orientation="Horizontal">
- <TextBlock Classes="headerLogo">Acosta</TextBlock>
- <TextBlock Classes="greeting" Margin="770 12 0 0">Добро пожаловать, оператор</TextBlock>
- <TextBlock Classes="greeting" Margin="7 12 0 0" FontWeight="Bold" Name="FIO" Text="{Binding PersonalAccountVM.CurrentUser.Surname}">Фамилия И.О.</TextBlock>
- <TextBlock Classes="greeting" Margin="10 10 0 0">/</TextBlock>
- <Button Classes="headerBt" Command="{Binding ChangePasswordView}">Изменить пароль</Button>
- <TextBlock Classes="greeting" Margin="0 10 0 0">/</TextBlock>
- <Button Classes="headerBt" Command="{Binding ExitFromProfile}">Выйти</Button>
- </StackPanel>
- </StackPanel>
- <StackPanel>
- <StackPanel.Styles>
- <Style Selector="TextBlock.TextBtBack">
- <Setter Property="Foreground" Value="#F5F5F5"></Setter>
- <Setter Property="FontFamily" Value="Roboto"></Setter>
- <Setter Property="FontWeight" Value="Medium"></Setter>
- <Setter Property="FontSize" Value="20"></Setter>
- <Setter Property="HorizontalAlignment" Value="Center"></Setter>
- <Setter Property="VerticalAlignment" Value="Center"></Setter>
- </Style>
- <Style Selector="TextBlock.Chapter">
- <Setter Property="Foreground" Value="Black"></Setter>
- <Setter Property="FontFamily" Value="Roboto"></Setter>
- <Setter Property="FontWeight" Value="Medium"></Setter>
- <Setter Property="FontSize" Value="20"></Setter>
- <Setter Property="Margin" Value="30 85 0 0"></Setter>
- </Style>
- <Style Selector="Button.BtBack">
- <Setter Property="Width" Value="140"></Setter>
- <Setter Property="Height" Value="40"></Setter>
- <Setter Property="Margin" Value="30 80 0 0"></Setter>
- <Setter Property="Background" Value="#E40714"></Setter>
- <Setter Property="CornerRadius" Value="13"></Setter>
- </Style>
- <Style Selector="Button.BtBack:pointerover /template/ ContentPresenter">
- <Setter Property="Background" Value="#A10009"></Setter>
- </Style>
- <Style Selector="Button.BtBack:pressed">
- <Setter Property="RenderTransform" Value="none"/>
- </Style>
- <Style Selector="Button.BtAdd">
- <Setter Property="Height" Value="40"></Setter>
- <Setter Property="Margin" Value="590 80 0 0"></Setter>
- <Setter Property="Background" Value="#E40714"></Setter>
- <Setter Property="CornerRadius" Value="13"></Setter>
- </Style>
- <Style Selector="Button.BtAdd:pointerover /template/ ContentPresenter">
- <Setter Property="Background" Value="#A10009"></Setter>
- </Style>
- <Style Selector="TextBlock.TextBtAdd">
- <Setter Property="Foreground" Value="#F5F5F5"></Setter>
- <Setter Property="FontFamily" Value="Roboto"></Setter>
- <Setter Property="FontWeight" Value="Medium"></Setter>
- <Setter Property="FontSize" Value="18"></Setter>
- <Setter Property="Margin" Value="20 0 0 0"></Setter>
- <Setter Property="VerticalAlignment" Value="Center"></Setter>
- </Style>
- <Style Selector="Button.BtAdd:pressed">
- <Setter Property="RenderTransform" Value="none"/>
- </Style>
- </StackPanel.Styles>
- <StackPanel Orientation="Horizontal">
- <Button Classes="BtBack" Command="{Binding BackPersonalAccountView}">
- <TextBlock Classes="TextBtBack">Назад</TextBlock>
- </Button>
- <TextBlock Classes="Chapter">Выберите Торговую точку для изменения</TextBlock>
- <StackPanel Orientation="Horizontal">
- <Button Classes="BtAdd" Width="330" Command="{Binding AddOutletsView}">
- <TextBlock Classes="TextBtAdd">Добавить торговую точку</TextBlock>
- </Button>
- <Image Source="avares://Acosta/Assets/plus.png" Width="25" Margin="-70 80 0 0"></Image>
- </StackPanel>
- </StackPanel>
- </StackPanel>
- <StackPanel Background="Transparent" Margin="0 150 0 0" HorizontalAlignment="Center">
- <StackPanel.Styles>
- <Style Selector="ListBox.filters ListBoxItem:pointerover /template/ ContentPresenter">
- <Setter Property="Background" Value="#FFF8F8"/>
- </Style>
- <Style Selector="ListBox.filters ListBoxItem:focus-within /template/ ContentPresenter">
- <Setter Property="Background" Value="#FFF8F8"/>
- </Style>
- <Style Selector="ListBox.filters ListBoxItem:selected /template/ ContentPresenter">
- <Setter Property="Background" Value="#F48288"/>
- </Style>
- <Style Selector="TextBox.EditTextBox">
- <Setter Property="Foreground" Value="Black"></Setter>
- <Setter Property="FontFamily" Value="Roboto"></Setter>
- <Setter Property="FontWeight" Value="Medium"></Setter>
- <Setter Property="FontSize" Value="15"></Setter>
- <Setter Property="Background" Value="#FFF8F8"></Setter>
- <Setter Property="BorderBrush" Value="#E40714"></Setter>
- <Setter Property="CornerRadius" Value="13"></Setter>
- <Setter Property="BorderThickness" Value="2"></Setter>
- <Setter Property="Padding" Value="20 8 0 0"></Setter>
- </Style>
- <Style Selector="TextBlock.TextColumns">
- <Setter Property="Foreground" Value="#F5F5F5"></Setter>
- <Setter Property="FontFamily" Value="Roboto"></Setter>
- <Setter Property="FontWeight" Value="Medium"></Setter>
- <Setter Property="FontSize" Value="20"></Setter>
- <Setter Property="Margin" Value="40 0 220 0"></Setter>
- <Setter Property="VerticalAlignment" Value="Center"></Setter>
- </Style>
- <Style Selector="Border.TextColumns">
- <Setter Property="Margin" Value="0 0 0 20"></Setter>
- </Style>
- <Style Selector="Border.Data">
- <Setter Property="Background" Value="#FFF8F8"></Setter>
- <Setter Property="BorderBrush" Value="#E40714"></Setter>
- <Setter Property="CornerRadius" Value="13"></Setter>
- <Setter Property="BorderThickness" Value="2"></Setter>
- </Style>
- <Style Selector="TextBlock.Data">
- <Setter Property="Background" Value="#FFF8F8"></Setter>
- <Setter Property="FontSize" Value="15"></Setter>
- <Setter Property="FontFamily" Value="Roboto"></Setter>
- <Setter Property="FontWeight" Value="Medium"></Setter>
- <Setter Property="Margin" Value="20 0 0 0"></Setter>
- <Setter Property="VerticalAlignment" Value="Center"></Setter>
- </Style>
- <Style Selector="TextBlock.TextBtEdit">
- <Setter Property="Foreground" Value="Black"></Setter>
- <Setter Property="FontFamily" Value="Roboto"></Setter>
- <Setter Property="FontWeight" Value="Medium"></Setter>
- <Setter Property="FontSize" Value="15"></Setter>
- <Setter Property="Padding" Value="20 4 0 0"></Setter>
- </Style>
- <Style Selector="Button.BtEdit">
- <Setter Property="BorderThickness" Value="2"></Setter>
- <Setter Property="Width" Value="180"></Setter>
- <Setter Property="Height" Value="38"></Setter>
- <Setter Property="Background" Value="#FFF8F8"></Setter>
- <Setter Property="CornerRadius" Value="13"></Setter>
- <Setter Property="BorderBrush" Value="#E40714"></Setter>
- </Style>
- <Style Selector="Button.BtEdit:pointerover /template/ ContentPresenter">
- <Setter Property="Background" Value="#FFF8F8"></Setter>
- <Setter Property="BorderBrush" Value="#E40714"></Setter>
- </Style>
- <Style Selector="Button.BtEdit:pressed">
- <Setter Property="RenderTransform" Value="none"/>
- </Style>
- </StackPanel.Styles>
- <Border Classes="TextColumns" Background="#80E40714" CornerRadius="13" Width="1490" Height="40">
- <StackPanel Orientation="Horizontal">
- <TextBlock Classes="TextColumns">ID</TextBlock>
- <TextBlock Classes="TextColumns">ТОРГОВАЯ СЕТЬ</TextBlock>
- <TextBlock Classes="TextColumns">АДРЕС</TextBlock>
- <TextBlock Classes="TextColumns">МЕСТОПОЛОЖЕНИЕ</TextBlock>
- </StackPanel>
- </Border>
- <ScrollViewer Height="550">
- <StackPanel Orientation="Vertical">
- <ListBox Classes="filters" ItemsSource="{Binding ListOutlets}" Background="Transparent" IsTabStop="False">
- <ListBox.ItemTemplate>
- <DataTemplate>
- <StackPanel Orientation="Horizontal" Margin="40 0 0 0">
- <!--<Button Classes="BtEdit" Width="180" Height="40" Margin="0 0 140 0" Command="{Binding EditOutletsView}">
- <TextBlock Classes="TextBtEdit">Типа ID</TextBlock>
- </Button>-->
- <!--<Border Classes="Data" CornerRadius="13" Width="180" Height="40" Margin="0 0 140 0">
- <TextBlock Classes="Data">Типа ID</TextBlock>
- </Border>-->
- <Border Classes="Data" CornerRadius="13" Width="150" Height="40" Margin="0 0 120 0">
- <TextBlock Text="{Binding Outletid}" Classes="Data">Типа id</TextBlock>
- </Border>
- <Border Classes="Data" CornerRadius="13" Width="280" Height="40" Margin="0 0 130 0">
- <TextBlock Text="{Binding TradeNetworksNavigation.Title}" Classes="Data">Типа название торговой сети</TextBlock>
- </Border>
- <!--<Border Classes="Data" CornerRadius="13" Width="310" Height="40" Margin="0 0 140 0">
- <TextBlock Classes="Data">Типа название торговой сети</TextBlock>
- </Border>-->
- <Border Classes="Data" CornerRadius="13" Width="220" Height="40" Margin="0 0 110 0">
- <ScrollViewer VerticalScrollBarVisibility="Hidden" HorizontalScrollBarVisibility="Disabled" Width="190" Height="35">
- <TextBlock TextWrapping="Wrap" Text="{Binding Address}" Classes="Data">Типа адрес</TextBlock>
- </ScrollViewer>
- </Border>
- <Border Classes="Data" CornerRadius="13" Width="350" Height="40" Margin="0 0 20 0">
- <TextBlock Text="{Binding Location}" Classes="Data">Типа местоположение</TextBlock>
- </Border>
- <!--<Button Classes="BtEdit" Content="Изменить" Command="{Binding $parent[Window].((vm:MainWindowViewModel)DataContext).EditOutlet}" CommandParameter ="{Binding Outletid}"/>-->
- <StackPanel Orientation="Horizontal">
- <Button Classes="BtEdit" Width="40" Command="{Binding $parent[Window].((vm:MainWindowViewModel)DataContext).EditOutlet}" CommandParameter ="{Binding Outletid}">
- <Image Source="avares://Acosta/Assets/change.png" Width="25"></Image>
- </Button>
- </StackPanel>
- </StackPanel>
- </DataTemplate>
- </ListBox.ItemTemplate>
- </ListBox>
- </StackPanel>
- </ScrollViewer>
- </StackPanel>
- <!--<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
- <StackPanel.Styles>
- <Style Selector="TextBlock.TextBtSave">
- <Setter Property="Foreground" Value="#F5F5F5"></Setter>
- <Setter Property="FontFamily" Value="Roboto"></Setter>
- <Setter Property="FontWeight" Value="Medium"></Setter>
- <Setter Property="FontSize" Value="20"></Setter>
- <Setter Property="HorizontalAlignment" Value="Center"></Setter>
- <Setter Property="VerticalAlignment" Value="Center"></Setter>
- </Style>
- <Style Selector="Button.BtSave">
- <Setter Property="Width" Value="180"></Setter>
- <Setter Property="Height" Value="38"></Setter>
- <Setter Property="Margin" Value="0 740 30 20"></Setter>
- <Setter Property="Background" Value="#E40714"></Setter>
- <Setter Property="CornerRadius" Value="13"></Setter>
- </Style>
- <Style Selector="Button.BtSave:pointerover /template/ ContentPresenter">
- <Setter Property="Background" Value="#A10009"></Setter>
- </Style>
- <Style Selector="Button.BtSave:pressed">
- <Setter Property="RenderTransform" Value="none"/>
- </Style>
- </StackPanel.Styles>
- <Button Classes="BtSave" Command="">
- <TextBlock Classes="TextBtSave">Сохранить</TextBlock>
- </Button>
- </StackPanel>-->
- </Grid>
- </UserControl>
|