-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings_window.xaml
More file actions
22 lines (20 loc) · 1.22 KB
/
settings_window.xaml
File metadata and controls
22 lines (20 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Window x:Class="WpfApp1.settings_window"
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApp1"
mc:Ignorable="d"
Title="Settings" Height="450" Width="600">
<Canvas>
<TextBlock Text="Pomodoro" FontFamily="Inter" FontSize="15" FontWeight="Medium" Canvas.Left="50" Canvas.Top="30"/>
<TextBox x:Name="PomodoroTextBox" Width="40" Canvas.Left="450"
Canvas.Top="30"/>
<TextBlock Text="Break" FontFamily="Inter" FontSize="15" FontWeight="Medium" Canvas.Left="50" Canvas.Top="60"/>
<TextBox x:Name="ShortBreakTextBox" Width="40" Canvas.Left="450"
Canvas.Top="60"/>
<TextBlock Text="Total sessions" FontFamily="Inter" FontSize="15" FontWeight="Medium" Canvas.Left="50" Canvas.Top="90"/>
<TextBox x:Name="SessionNumber" Width="40" Canvas.Left="450" Canvas.Top="90"/>
<Button Content="Save" Canvas.Bottom="20" Canvas.Right="30" Click="SaveButton_Click"/>
</Canvas>
</Window>