13 lines
622 B
XML
13 lines
622 B
XML
<Window x:Class="mpvnet.AboutWindow"
|
|
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"
|
|
mc:Ignorable="d"
|
|
Title="About mpv.net" Height="200" Width="500" FontSize="20"
|
|
ShowInTaskbar="False" WindowStartupLocation="CenterOwner" ResizeMode="NoResize"
|
|
Foreground="#FFA0842A">
|
|
<Grid>
|
|
<TextBlock Name="TextBlock" Margin="20" />
|
|
</Grid>
|
|
</Window> |