added Timer Class
This commit is contained in:
@@ -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>
|
||||
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user