Skip to content

Commit

Permalink
file left out from last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ZsoltGajdacs committed Jan 5, 2019
1 parent 76a464c commit 811c8d8
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions BlinkReminder/Windows/SettingsWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,18 @@
<ColumnDefinition Width="10" /> <!--5 Right padding-->
</Grid.ColumnDefinitions>

<TextBox x:Name="shortCycleTimeTextBox" Text="{Binding ShortIntervalTime, Mode=TwoWay}" Grid.Column="2" Grid.Row="1"/>
<Label x:Name="shortCycleTimeLabel" Content="Interval of short break: " Grid.Column="1" Grid.Row="1"/>
<TextBox x:Name="shortIntervalText" Text="{Binding ShortIntervalTime, Mode=TwoWay}" Grid.Column="2" Grid.Row="1"/>
<Label x:Name="shortIntervalLabel" Content="Interval of short break (s): " Grid.Column="1" Grid.Row="1"/>

<TextBox x:Name="shortDisplayText" Text="{Binding ShortDisplayTime, Mode=TwoWay}" Grid.Column="2" Grid.Row="3"/>
<Label x:Name="shortDisplayLabel" Content="Length of short break (s): " Grid.Column="1" Grid.Row="3"/>

<TextBox x:Name="longIntervalText" Text="{Binding LongIntervalTime, Mode=TwoWay}" Grid.Column="2" Grid.Row="5"/>
<Label x:Name="longIntervalLabel" Content="Interval of long break (s): " Grid.Column="1" Grid.Row="5"/>

<TextBox x:Name="longDisplayText" Text="{Binding LongDisplayTime, Mode=TwoWay}" Grid.Column="2" Grid.Row="7"/>
<Label x:Name="longDisplayLabel" Content="Length of long break (s): " Grid.Column="1" Grid.Row="7"/>

<Button x:Name="okButton" Content="OK" Grid.Column="4" Grid.Row="7" Click="OkButton_Click" />
</Grid>
</Window>

0 comments on commit 811c8d8

Please sign in to comment.