-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPortfolioForClient.xaml
34 lines (34 loc) · 1.71 KB
/
PortfolioForClient.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Window x:Class="Фотостудия.PortfolioForClient"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
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"
xmlns:local="clr-namespace:Фотостудия"
mc:Ignorable="d"
Title="Портфлио фотографа" Height="650" Width="800" Icon="AppImgs/Лого.png">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="0.15*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<DockPanel>
<TextBlock Text="Портфолио фотографа" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="20"/>
</DockPanel>
<ListView Name="lw1" ScrollViewer.HorizontalScrollBarVisibility="Disabled" Grid.Row="1" Background="LightGray">
<ListView.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel HorizontalAlignment="Center"></WrapPanel>
</ItemsPanelTemplate>
</ListView.ItemsPanel>
<ListView.ItemTemplate>
<DataTemplate>
<Border Padding="10" CornerRadius="5" HorizontalAlignment="Center" Background="White">
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Width="300">
<Image Source="{Binding ImageForWins}" Width="300"/>
</StackPanel>
</Border>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</Grid>
</Window>