summaryrefslogtreecommitdiff
path: root/platform/winrt/gsview/OutputIntent.xaml
diff options
context:
space:
mode:
authorMichael Vrhel <michael.vrhel@artifex.com>2014-09-09 16:31:31 -0700
committerMichael Vrhel <michael.vrhel@artifex.com>2014-09-09 16:39:41 -0700
commit7ea99e3a8951e265d1437a77dcfee069de0edf76 (patch)
tree8e113fea67931064e2a9338d67b26aaabab27512 /platform/winrt/gsview/OutputIntent.xaml
parent8a9519f2183b64fe220bcb1f6acedbe6acc190cd (diff)
downloadmupdf-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/winrt/gsview/OutputIntent.xaml')
-rw-r--r--platform/winrt/gsview/OutputIntent.xaml50
1 files changed, 0 insertions, 50 deletions
diff --git a/platform/winrt/gsview/OutputIntent.xaml b/platform/winrt/gsview/OutputIntent.xaml
deleted file mode 100644
index fdfb7e3c..00000000
--- a/platform/winrt/gsview/OutputIntent.xaml
+++ /dev/null
@@ -1,50 +0,0 @@
-<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>