Design & build fix
This commit is contained in:
parent
eeab211dce
commit
3044c35876
@ -28,6 +28,7 @@
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<Prefer32Bit>false</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
@ -83,6 +84,7 @@
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</ApplicationDefinition>
|
||||
<Compile Include="Util\CodeIntegrityHelper.cs" />
|
||||
<Compile Include="Util\OsUpgradeDetection.cs" />
|
||||
<Compile Include="Util\OSVersionInfo.cs" />
|
||||
<Compile Include="Util\UEFIHelper.cs" />
|
||||
|
@ -7,7 +7,7 @@
|
||||
xmlns:controls="clr-namespace:MahApps.Metro.Controls;assembly=MahApps.Metro"
|
||||
mc:Ignorable="d"
|
||||
Title="Derping Drivers - Windows driver settings detection tool"
|
||||
Height="360" Width="700"
|
||||
Height="400" Width="700"
|
||||
ShowMaxRestoreButton="False"
|
||||
ResizeMode="NoResize"
|
||||
WindowStartupLocation="CenterScreen"
|
||||
@ -26,6 +26,7 @@
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="Auto" />
|
||||
<RowDefinition Height="*" />
|
||||
</Grid.RowDefinitions>
|
||||
<Grid.ColumnDefinitions>
|
||||
@ -52,6 +53,9 @@
|
||||
|
||||
<Label Grid.Row="5" Grid.Column="0">OS upgrade status:</Label>
|
||||
<Label Grid.Row="5" Grid.Column="2" Content="{Binding Path=OsUpgradeStatus}" />
|
||||
|
||||
<Label Grid.Row="6" Grid.Column="0">Code Integrity status:</Label>
|
||||
<Label Grid.Row="6" Grid.Column="2" Content="{Binding Path=CodeIntegrityStatus}" />
|
||||
|
||||
</Grid>
|
||||
</TabItem>
|
||||
|
@ -54,6 +54,8 @@ namespace DerpingDrivers
|
||||
public string OsUpgradeStatus =>
|
||||
OsUpgradeDetection.IsGrandfathered ? "In-place upgraded" : "Clean installation";
|
||||
|
||||
public string CodeIntegrityStatus => "";
|
||||
|
||||
public string SummaryText =>
|
||||
"Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.";
|
||||
|
||||
|
8
DerpingDrivers/Util/CodeIntegrityHelper.cs
Normal file
8
DerpingDrivers/Util/CodeIntegrityHelper.cs
Normal file
@ -0,0 +1,8 @@
|
||||
namespace DerpingDrivers.Util
|
||||
{
|
||||
|
||||
public static class CodeIntegrityHelper
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user