-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allow to force refreshing the hard-drive
- Loading branch information
1 parent
bc3c769
commit e2b9dfc
Showing
2 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
<Window x:Class="DriveKeepAlive.MainWindow" | ||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | ||
Title="Drive Keep-alive" Height="115.672" Width="525" Closed="Window_Closed_1" ResizeMode="CanMinimize"> | ||
Title="Drive Keep-alive" Height="152.672" Width="525" Closed="Window_Closed_1" ResizeMode="CanMinimize"> | ||
<Grid> | ||
<Grid.RowDefinitions> | ||
<RowDefinition Height="41*"/> | ||
<RowDefinition Height="46*"/> | ||
<RowDefinition Height="46*"/> | ||
</Grid.RowDefinitions> | ||
<TextBlock x:Name="WriteCountLabel" Grid.Row="0" Margin="10,10,332,10" ><Run Text="write cycles"/></TextBlock> | ||
<TextBlock x:Name="IdleCountLabel" Text="idle cycles" Grid.Row="1" Margin="10" /> | ||
<TextBlock x:Name="PathLabel" Text="Directory" HorizontalAlignment="Right" Margin="0,10,9,10" /> | ||
|
||
<CheckBox x:Name="forceRefreshCheckBox" Grid.Row="2" Content="Force Refreshing" Checked="forceRefreshCheckBox_Checked"/> | ||
</Grid> | ||
</Window> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters