diff --git a/GoLiveWindow.xaml b/GoLiveWindow.xaml
new file mode 100644
index 0000000..bf9acdb
--- /dev/null
+++ b/GoLiveWindow.xaml
@@ -0,0 +1,131 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/GoLiveWindow.xaml.cs b/GoLiveWindow.xaml.cs
new file mode 100644
index 0000000..8ae83c6
--- /dev/null
+++ b/GoLiveWindow.xaml.cs
@@ -0,0 +1,15 @@
+using System.Windows;
+using ytLive.ViewModels;
+
+namespace ytLive;
+
+public partial class GoLiveWindow : Window
+{
+ public GoLiveWindow(GoLiveViewModel viewModel)
+ {
+ InitializeComponent();
+ DataContext = viewModel;
+ viewModel.StartRequested += () => DialogResult = true;
+ viewModel.CancelRequested += () => DialogResult = false;
+ }
+}
diff --git a/MainWindow.xaml b/MainWindow.xaml
index 9d06567..a5d8cdb 100644
--- a/MainWindow.xaml
+++ b/MainWindow.xaml
@@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:vm="clr-namespace:ytLive.ViewModels"
mc:Ignorable="d"
- Title="ytLive" Height="720" Width="1280"
+ Title="{Binding WindowTitle}" Height="720" Width="1280"
Background="#1a1a2e"
WindowStartupLocation="CenterScreen">
@@ -13,9 +13,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+