-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml
21 lines (20 loc) · 1.22 KB
/
MainWindow.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Window x:Name="ui" x:Class="Youtube.tv.win.MainWindow"
xmlns:wpf="clr-namespace:CefSharp.Wpf;assembly=CefSharp.Wpf"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Youtube.tv.win"
mc:Ignorable="d"
Title="YT TV MODE (BY @KAIRO18)" Height="570.492" Width="1115.984" Icon="youtube_logo_icon_147199.ico" WindowStyle="ThreeDBorderWindow" WindowState="Maximized" WindowStartupLocation="CenterScreen" Closing="ui_Closing" KeyDown="ui_KeyDown">
<Grid Background="White">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition Width="11*"/>
</Grid.ColumnDefinitions>
<Border BorderThickness="0,1" Grid.RowSpan="1" Grid.ColumnSpan="2">
<wpf:ChromiumWebBrowser x:Name="Browser" Address="www.youtube.com/tv#" Foreground="{x:Null}" Background="#FFF5EBEB"/>
</Border>
</Grid>
</Window>