You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
3.5 KiB

<Window
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:cc="clr-namespace:CowOutputClient"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
x:Class="CowOutputClient.ProductCatalogSequenceWindow"
Title="ProductCatalogSequenceWindow" Height="500" Width="705" Loaded="Window_Loaded" WindowStyle="None" AllowsTransparency="True" Background="#0fff" WindowStartupLocation="CenterScreen" >
<Grid MouseLeftButtonDown="Grid_MouseLeftButtonDown">
<Border CornerRadius="20" Background="#ccc">
<Border Margin="20" Background="White">
</Border>
</Border>
<Grid Name="Grid2" Margin="30,20,0,0" Width="650" Height="400" HorizontalAlignment="Left" VerticalAlignment="Top">
<ScrollViewer x:Name="scrList2" Margin="0" VerticalScrollBarVisibility="Auto">
<WrapPanel Name="ProductCatalogPanel" ItemHeight="45" ItemWidth="160" Width="{Binding ElementName=scrList2, Path=Width, Mode=OneWay}" Margin="0,0,0,0" HorizontalAlignment="Left" VerticalAlignment="Top">
<!--<Button Focusable="False" Content="鲜品" FontSize="20" Margin="10,10,0,0" />
<TextBox FontSize="20" Text="123" Height="32" Margin="10,10,0,0" Width="50"/>
<Button Focusable="False" Content="鲜品" FontSize="20" Margin="10,10,0,0" />
<TextBox FontSize="20" Text="123" TextAlignment="Justify" VerticalContentAlignment="Center" PreviewMouseDown="txtProduceStartDate_PreviewMouseDown_1" HorizontalAlignment="Left" Height="32" Margin="10,10,0,0" VerticalAlignment="Top" Width="50"/>-->
<!--<Button Focusable="False" Content="鲜品" Name="btn3" FontSize="20" Margin="10,10,0,0" />
<Button Focusable="False" Content="鲜品" Name="btn2" FontSize="20" Margin="10,10,0,0" />
<Button Focusable="False" Content="鲜品" Name="btn5" FontSize="20" Margin="10,10,0,0" />
<Button Focusable="False" Content="鲜品" Name="btn6" FontSize="20" Margin="10,10,0,0" />
<Button Focusable="False" Content="鲜品" Name="btn8" FontSize="20" Margin="10,10,0,0" />
<Button Focusable="False" Content="鲜品" Name="btn9" FontSize="20" Margin="10,10,0,0" />
<Button Focusable="False" Content="鲜品" Name="btn10" FontSize="20" Margin="10,10,0,0" />
<Button Focusable="False" Content="鲜品" Name="btn11" FontSize="20" Margin="10,10,0,0" />
<Button Focusable="False" Content="鲜品" Name="btn12" FontSize="20" Margin="10,10,0,0" />
<Button Focusable="False" Content="鲜品" Name="btn13" FontSize="20" Margin="10,10,0,0" />
<Button Focusable="False" Content="鲜品" Name="btn14" FontSize="20" Margin="10,10,0,0" />-->
</WrapPanel>
</ScrollViewer>
</Grid>
<Button Focusable="False" Content="保存" Name="btnSave" Click="btnSave_Click_1" FontSize="20" Margin="0,425,120,0" Width="70" Height="50" HorizontalAlignment="Right" VerticalAlignment="Top"/>
<Button Focusable="False" Content="关闭" Name="btnClose" Click="btnClose_Click_1" FontSize="20" Margin="0,425,30,0" Width="70" Height="50" HorizontalAlignment="Right" VerticalAlignment="Top"/>
</Grid>
</Window>