Skip to content

Instantly share code, notes, and snippets.

@MartinZikmund
Created December 8, 2023 05:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MartinZikmund/a3f8a5861a9a8eb711f3eb27fae9a8d4 to your computer and use it in GitHub Desktop.
Save MartinZikmund/a3f8a5861a9a8eb711f3eb27fae9a8d4 to your computer and use it in GitHub Desktop.
using Microsoft.UI.Text;
using Microsoft.UI.Xaml.Media.Imaging;
namespace ChristmasCountdown;
public sealed partial class MainPage : Page
{
private DispatcherTimer _timer = new();
private TextBlock _countdownText;
public MainPage()
{
this
.Background(
new ImageBrush()
.ImageSource("ms-appx:///ChristmasCountdown/Assets/Background.png")
.Stretch(Stretch.UniformToFill))
.Content(
new Border()
.Background(new SolidColorBrush(Color.FromArgb(128, 0, 0, 0)))
.Child(
new StackPanel()
.Spacing(20)
.VerticalAlignment(VerticalAlignment.Center)
.HorizontalAlignment(HorizontalAlignment.Center)
.Children(
new TextBlock()
.Text("Christmas Countdown")
.FontSize(24)
.FontWeight(FontWeights.Bold)
.HorizontalAlignment(HorizontalAlignment.Center)
.Foreground(Colors.White),
(_countdownText = new TextBlock()
.FontSize(48)
.FontWeight(FontWeights.Bold)
.HorizontalAlignment(HorizontalAlignment.Center)
.TextAlignment(Microsoft.UI.Xaml.TextAlignment.Center)
.Foreground(Colors.White))
)));
_timer.Interval = TimeSpan.FromSeconds(0.5);
_timer.Tick += (s, e) => OnTick();
_timer.Start();
OnTick();
}
private void OnTick()
{
var christmasDay = new DateTime(DateTime.Now.Year, 12, 25);
var timeUntilChristmas = christmasDay - DateTime.Now;
if (timeUntilChristmas.TotalSeconds <= 0)
{
_countdownText.Text = "Merry Christmas!";
_timer.Stop();
}
else
{
_countdownText.Text =
$"{timeUntilChristmas.Days} days" + Environment.NewLine +
$"{timeUntilChristmas.Hours} hours" + Environment.NewLine +
$"{timeUntilChristmas.Minutes} minutes" + Environment.NewLine +
$"{timeUntilChristmas.Seconds} seconds";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment