diff options
author | Michael Vrhel <michael.vrhel@artifex.com> | 2014-09-09 16:31:31 -0700 |
---|---|---|
committer | Michael Vrhel <michael.vrhel@artifex.com> | 2014-09-09 16:39:41 -0700 |
commit | 7ea99e3a8951e265d1437a77dcfee069de0edf76 (patch) | |
tree | 8e113fea67931064e2a9338d67b26aaabab27512 /platform/windows/gsview/OutputIntent.xaml | |
parent | 8a9519f2183b64fe220bcb1f6acedbe6acc190cd (diff) | |
download | mupdf-7ea99e3a8951e265d1437a77dcfee069de0edf76.tar.xz |
Rename of winrt to windows due to presence on gsview in this folder.
The contents of this folder will contain both winrt and gsview projects
which are shared in a common visual studio 2013 solution.
Diffstat (limited to 'platform/windows/gsview/OutputIntent.xaml')
-rw-r--r-- | platform/windows/gsview/OutputIntent.xaml | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/platform/windows/gsview/OutputIntent.xaml b/platform/windows/gsview/OutputIntent.xaml new file mode 100644 index 00000000..fdfb7e3c --- /dev/null +++ b/platform/windows/gsview/OutputIntent.xaml @@ -0,0 +1,50 @@ +<Window x:Class="gsview.OutputIntent" + xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" + xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" + Title="OutputIntent" Height="176" Width="338" + SizeToContent="Width"> + + <DockPanel LastChildFill="True" Margin="0,0,0,0"> + + <Grid Background="DarkGray" DockPanel.Dock="Bottom" > + <Button Width="50" Height="20" Click="ClickOK" Margin="0,5,0,5"> + <TextBlock>OK</TextBlock> + </Button> + </Grid> + + <Grid Background="DarkGray" DockPanel.Dock="Top" > + <Grid Background="DarkGray" Grid.Row="0" Grid.Column="0" Margin="25,15,25,0"> + <Grid.RowDefinitions> + <RowDefinition Height="Auto" /> + <RowDefinition Height="Auto" /> + <RowDefinition Height="Auto" /> + </Grid.RowDefinitions> + <Grid.ColumnDefinitions> + <ColumnDefinition Width="Auto" /> + <ColumnDefinition Width="Auto" /> + </Grid.ColumnDefinitions> + + <Button Grid.Column="0" Grid.Row="0" Width="50" Height="20" Click="SelectGray" Margin="0,0,0,0"> + <TextBlock>Gray</TextBlock> + </Button> + <TextBox x:Name="xaml_gray" Grid.Column="1" Grid.Row="0" Background="DarkGray" Height="20" Margin="5,5,5,5" IsReadOnly="True" Text="Not Set" BorderBrush="Red"></TextBox> + + <Button Grid.Column="0" Grid.Row="1" Width="50" Height="20" Click="SelectRGB" Margin="0,0,0,0"> + <TextBlock>RGB</TextBlock> + </Button> + <TextBox x:Name="xaml_rgb" Grid.Column="1" Grid.Row="1" Background="DarkGray" Height="20" Margin="5,5,5,5" IsReadOnly="True" Text="Not Set" BorderBrush="Red"></TextBox> + + <Button Grid.Column="0" Grid.Row="2" Width="50" Height="20" Click="SelectCMYK" Margin="0,0,0,0"> + <TextBlock>CMYK</TextBlock> + </Button> + <TextBox x:Name="xaml_cmyk" Grid.Column="1" Grid.Row="2" Background="DarkGray" Height="20" Margin="5,5,5,5" IsReadOnly="True" Text="Not Set" BorderBrush="Red"></TextBox> + + + + + </Grid> + </Grid> + + + </DockPanel> +</Window> |