added Timer Class

This commit is contained in:
2025-10-28 19:18:02 +01:00
parent 4219a62dac
commit bc738594c4
5 changed files with 36 additions and 3 deletions
+2 -2
View File
@@ -24,8 +24,8 @@
VerticalAlignment="Center" />
<DockPanel HorizontalSpacing="50">
<Button Content="{Binding Time}" Canvas.Left="60" Canvas.Top="180" />
<Button Content="+ 1:00" Canvas.Left="60" Canvas.Top="180" />
<Button Content="Start/Stop" Click="ButtonHandlerStartStop"/>
<Button Content="+ 1:00" Click="ButtonHandlerAddTime" />
</DockPanel>
</StackPanel>
+11
View File
@@ -1,4 +1,5 @@
using Avalonia.Controls;
using Avalonia.Interactivity;
namespace SCRUM_Timer.Views;
@@ -8,4 +9,14 @@ public partial class MainWindow : Window
{
InitializeComponent();
}
private void ButtonHandlerStartStop(object? sender, RoutedEventArgs e)
{
throw new System.NotImplementedException();
}
private void ButtonHandlerAddTime(object? sender, RoutedEventArgs e)
{
throw new System.NotImplementedException();
}
}