I'm building a UI in XAML for a Windows Store app; it uses two background graphics in adjacent columns. The XAML is as follows:
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="11" />
</Grid.ColumnDefinitions>
<Image Source="/Assets/stop-title-background-strip.png" Stretch="Fill" />
<Image Grid.Column="1" Source="/Assets/routes-chevron.png" Stretch="Fill" />
<TextBlock Text="Available Routes" />
</Grid>
However, when this is rendered, there is an obvious tiny gap between the columns:

I've tried setting the UseLayoutRounding attribute of the Grid and Image elements to "true" (and false) but this doesn't fix the problem.
How can I stop this gap appearing?