Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <Window x:Class="task_manager.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="Doskonały menadżer zadań" Height="650" Width="600" ResizeMode="NoResize">
- <Grid>
- <StackPanel Orientation="Vertical">
- <StackPanel VerticalAlignment="Top" Orientation="Horizontal">
- <Label Content="Lista procesów"/>
- <Button Content="Odśwież listę" Width="200" HorizontalAlignment="Center" Click="Button_Refresh"/>
- </StackPanel>
- <ListBox x:Name="Master" Height="250"/>
- <Label Content="Szczegóły dotyczące procestu" VerticalAlignment="Bottom"/>
- <Grid VerticalAlignment="Bottom" Height="300">
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition Height="Auto" />
- <RowDefinition Height="Auto" />
- <RowDefinition Height="Auto" />
- <RowDefinition Height="*" />
- <RowDefinition Height="*" />
- <RowDefinition Height="Auto" />
- </Grid.RowDefinitions>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="Auto" />
- <ColumnDefinition Width="*" />
- </Grid.ColumnDefinitions>
- <Label Grid.Row="0" Grid.Column="0" Content="Nazwa:"/>
- <Label Grid.Row="1" Grid.Column="0" Content="Id:"/>
- <Label Grid.Row="2" Grid.Column="0" Content="Priorytet:"/>
- <Label Grid.Row="3" Grid.Column="0" Content="Parametry startowe:"/>
- <Label Grid.Row="4" Grid.Column="0" Content="Lista wątków:"/>
- <Label Grid.Row="5" Grid.Column="0" Content="Lista modułów:"/>
- <Label x:Name="nameLabel" Grid.Row="0" Grid.Column="1" />
- <Label x:Name="idLabel" Grid.Row="1" Grid.Column="1"/>
- <Label x:Name="priorityLabel" Grid.Row="2" Grid.Column="1" />
- <Label x:Name="startParameters" Grid.Row="3" Grid.Column="1" />
- <ListBox x:Name="threadList" Grid.Row="4" Grid.Column="1" />
- <ListBox x:Name="moduleList" Grid.Row="5" Grid.Column="1" />
- <StackPanel Grid.Row="6" Grid.Column="1" Orientation="Horizontal">
- <Button Content="Zabij" HorizontalAlignment="Left" Width="100"/>
- <Button Content="Zmień prorytet" HorizontalAlignment="Right" Width="100"/>
- </StackPanel>
- </Grid>
- </StackPanel>
- </Grid>
- </Window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement