2020-01-11 06:43:40 +00:00
|
|
|
<local:UserControlRx
|
2019-12-08 22:30:49 +00:00
|
|
|
x:Class="Wabbajack.CpuView"
|
2019-11-07 05:33:08 +00:00
|
|
|
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:local="clr-namespace:Wabbajack"
|
2019-11-29 22:09:22 +00:00
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2019-12-08 22:30:49 +00:00
|
|
|
d:DesignHeight="450"
|
2019-11-07 05:33:08 +00:00
|
|
|
d:DesignWidth="800"
|
2020-01-11 06:43:40 +00:00
|
|
|
x:TypeArguments="local:ICpuStatusVM"
|
2019-11-07 05:33:08 +00:00
|
|
|
mc:Ignorable="d">
|
2020-01-11 06:43:40 +00:00
|
|
|
<Grid x:Name="ControlGrid" Background="Transparent">
|
2020-02-08 04:35:08 +00:00
|
|
|
<Rectangle x:Name="HeatedBorderRect" Fill="{StaticResource HeatedBorderBrush}" />
|
2020-01-11 06:43:40 +00:00
|
|
|
<Border BorderBrush="Transparent" BorderThickness="1" />
|
|
|
|
<Grid Margin="1" Background="{StaticResource DarkBackgroundBrush}">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
</Grid.RowDefinitions>
|
2020-07-25 22:15:26 +00:00
|
|
|
<ListBox Grid.Row="0"
|
2020-01-11 06:43:40 +00:00
|
|
|
x:Name="CpuListControl"
|
|
|
|
HorizontalContentAlignment="Stretch"
|
|
|
|
ScrollViewer.HorizontalScrollBarVisibility="Disabled">
|
|
|
|
<ListBox.ItemTemplate>
|
|
|
|
<DataTemplate>
|
2020-02-08 04:35:08 +00:00
|
|
|
<local:CpuLineView ViewModel="{Binding}" />
|
2020-01-11 06:43:40 +00:00
|
|
|
</DataTemplate>
|
|
|
|
</ListBox.ItemTemplate>
|
|
|
|
</ListBox>
|
2020-07-25 22:15:26 +00:00
|
|
|
<Border Grid.Row="1"
|
2020-01-11 06:43:40 +00:00
|
|
|
x:Name="SettingsBar"
|
|
|
|
Background="{StaticResource BackgroundBrush}"
|
|
|
|
BorderBrush="{StaticResource ButtonNormalBorder}"
|
|
|
|
BorderThickness="0,1,0,0">
|
|
|
|
<Grid>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="*" />
|
2020-01-11 20:20:14 +00:00
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
2020-01-11 06:43:40 +00:00
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<TextBlock
|
|
|
|
Margin="5,0"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Text="Percent Usage" />
|
2020-07-25 22:15:26 +00:00
|
|
|
<Slider Grid.Column="1"
|
2020-01-11 06:43:40 +00:00
|
|
|
x:Name="TargetPercentageSlider"
|
2020-01-11 20:20:14 +00:00
|
|
|
Margin="2,0,4,0"
|
2020-01-11 06:43:40 +00:00
|
|
|
Maximum="1"
|
|
|
|
Minimum="0.1"
|
|
|
|
Orientation="Horizontal" />
|
2020-07-25 22:15:26 +00:00
|
|
|
<TextBlock Grid.Column="2"
|
2020-01-11 20:20:14 +00:00
|
|
|
x:Name="PercentageText"
|
|
|
|
Margin="2,0,4,0" />
|
|
|
|
<TextBlock Grid.Column="3" Text="|" />
|
2020-07-25 22:15:26 +00:00
|
|
|
<TextBlock Grid.Column="4"
|
2020-01-11 20:20:14 +00:00
|
|
|
x:Name="CpuCountText"
|
|
|
|
Margin="2,0,6,0" />
|
2020-01-11 06:43:40 +00:00
|
|
|
</Grid>
|
|
|
|
</Border>
|
|
|
|
</Grid>
|
2019-11-07 05:33:08 +00:00
|
|
|
</Grid>
|
2020-01-11 06:43:40 +00:00
|
|
|
</local:UserControlRx>
|