27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
x:Class="Млаумчерб.Клиент.зримое.NetworkTaskView"
|
|
Padding="4" MinHeight="90" MinWidth="200"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Stretch"
|
|
BorderThickness="1" BorderBrush="#999999">
|
|
<Grid RowDefinitions="* * *" ColumnDefinitions="* 30">
|
|
<TextBlock Name="NameText"
|
|
Grid.Row="0" Grid.Column="0" />
|
|
<Button Grid.Row="0" Grid.Column="1"
|
|
Classes="button_no_border"
|
|
Background="Transparent"
|
|
Foreground="#FF4040"
|
|
FontSize="12"
|
|
Click="RemoveFromList">
|
|
[X]
|
|
</Button>
|
|
<TextBlock Name="StatusText"
|
|
Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="2"
|
|
FontSize="15"/>
|
|
<TextBlock Name="ProgressText"
|
|
Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="2"
|
|
FontSize="14"/>
|
|
</Grid>
|
|
</UserControl>
|