12345678910111213141516171819202122232425262728293031323334 |
- <UserControl x:Class="DownloadImagesTool.DownloadImageView"
- 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:DownloadImagesTool"
- mc:Ignorable="d">
- <Grid>
- <StackPanel>
- <GroupBox Header="" Margin="5">
- <Grid Margin="2">
- <Grid.RowDefinitions>
- <RowDefinition Height="30"></RowDefinition>
- <RowDefinition Height="30"></RowDefinition>
- <RowDefinition Height="*"></RowDefinition>
- <RowDefinition Height="*"></RowDefinition>
- <RowDefinition Height="*"></RowDefinition>
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="180" />
- <ColumnDefinition Width="*" />
- </Grid.ColumnDefinitions>
- <Label Grid.Row="0" Grid.Column="0" Content="服务器地址" />
- <TextBox Grid.Row="0" Grid.Column="1" Text="{Binding ServerAddress}"/>
- <Label Grid.Row="1" Grid.Column="0" Content="用户名" />
- <TextBox Grid.Row="1" Grid.Column="1" Text="{Binding UserNames}"/>
- <Button Grid.Row="2" Grid.Column="1" Content="开始下载图片" Command="{Binding DownloadImageCommand}" />
- <Label Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="2" Content="{Binding QueueCount}" />
- <TextBox Grid.Row="4" Grid.Column="0" Height="150" Grid.ColumnSpan="2" Text="{Binding Logs}" />
- </Grid>
- </GroupBox>
- </StackPanel>
- </Grid>
- </UserControl>
|