| 123456789101112131415161718192021222324252627282930313233343536373839 | <wpf:ThemableWindow x:Class="PRSRecordingNotes.ScreenRecorderWindow"        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:PRSRecordingNotes"        mc:Ignorable="d"        Title="MainWindow" WindowStartupLocation="CenterOwner" Panel.ZIndex="9999" Background="Transparent" WindowStyle="None" Loaded="Window_Loaded" SizeToContent="WidthAndHeight" Topmost="True" BorderThickness="0" BorderBrush="Transparent" AllowsTransparency="True">    <Grid>        <Grid.ColumnDefinitions>            <ColumnDefinition Width="Auto"/>        </Grid.ColumnDefinitions>        <Grid.RowDefinitions>            <RowDefinition Height="Auto"/>            <RowDefinition Height="Auto"/>        </Grid.RowDefinitions>        <Border Grid.Row="0" BorderBrush="Gray" BorderThickness="0.75" CornerRadius="10" Background="LightYellow">            <TextBox FontSize="24" Foreground="DarkRed" Text="Enter Notes Here" TextAlignment="Center" Padding="10" MinHeight="50" MinWidth="100" TextWrapping="Wrap" AcceptsReturn="True" Background="Transparent" BorderThickness="0" />        </Border>        <Grid x:Name="Buttons" Grid.Row="1" Height="30" Background="Transparent" Visibility="Visible" Margin="0,2,0,0">            <Grid.ColumnDefinitions>                <ColumnDefinition Width="55"/>                <ColumnDefinition Width="*"/>                <ColumnDefinition Width="30"/>                <ColumnDefinition Width="*"/>                <ColumnDefinition Width="55"/>            </Grid.ColumnDefinitions>            <Border BorderBrush="Gray" BorderThickness="0.75" CornerRadius="10" Grid.Column="0" Background="Silver" >                <Button x:Name="Resume" Click="Resume_Click" Content="Resume" BorderThickness="0" Background="Transparent" />            </Border>            <Border BorderBrush="Gray" BorderThickness="0.75" CornerRadius="15" Grid.Column="2" Background="Silver" >                <Image x:Name="Move" MouseDown="Move_MouseDown" MouseUp="Move_MouseUp" MouseMove="Move_MouseMove" Width="30" Grid.Column="2"/>            </Border>            <Border BorderBrush="Gray" BorderThickness="0.75" CornerRadius="10"  Grid.Column="4" Background="Silver" >                <Button x:Name="Close" Click="Close_Click" Content="Close" Background="Transparent" BorderThickness="0"/>            </Border>        </Grid>    </Grid></wpf:ThemableWindow>
 |