diff options
Diffstat (limited to 'platform/windows/gsview/Info.xaml')
-rw-r--r-- | platform/windows/gsview/Info.xaml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/platform/windows/gsview/Info.xaml b/platform/windows/gsview/Info.xaml new file mode 100644 index 00000000..4033d2ee --- /dev/null +++ b/platform/windows/gsview/Info.xaml @@ -0,0 +1,11 @@ +<Window x:Class="gsview.Info" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + Title="Info" Height="216.304" Width="430.434" Background="WhiteSmoke"> + <DockPanel LastChildFill="True"> + <Button DockPanel.Dock="Bottom" Width="70" Height="20" Name="xaml_CloseInfo" Click="OKClose" Margin="0,0,0,20" IsDefault="True"> + <TextBlock Name="xaml_ButtonText" FontFamily="Courier" Text="OK"/> + </Button> + <TextBlock Name="xaml_TextInfo" Text="File not open" Margin="10,10,10,10" FontFamily="Courier New"></TextBlock> + </DockPanel> +</Window> |