Initial commit — WPF LCD alarm clock display

This commit is contained in:
2026-05-10 03:03:41 +00:00
commit f901f584bf
15 changed files with 525 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace No_Cause_For_Alarm
{
/// <summary>
/// Interaction logic for LcdLetter.xaml
/// </summary>
public partial class LcdLetter : UserControl
{
public LcdLetter()
{
InitializeComponent();
}
}
}