초기 커밋.

This commit is contained in:
2026-03-25 17:26:16 +09:00
commit 7b0d900bdb
86 changed files with 20087 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Tornado3_2026Election.ViewModels;
namespace Tornado3_2026Election.Controls;
public sealed partial class ChannelSchedulePanel : UserControl
{
public static readonly DependencyProperty ViewModelProperty =
DependencyProperty.Register(
nameof(ViewModel),
typeof(ChannelScheduleViewModel),
typeof(ChannelSchedulePanel),
new PropertyMetadata(null));
public ChannelSchedulePanel()
{
InitializeComponent();
}
public ChannelScheduleViewModel? ViewModel
{
get => (ChannelScheduleViewModel?)GetValue(ViewModelProperty);
set => SetValue(ViewModelProperty, value);
}
}