The ScaleTransform in ViewBox is giving you trouble. Pixel snapping for text will be delivered in Silverlight 5, but I'm not sure about all UI elements.
Using Dave Reyea's Pixel Snapper can help you get around this:
<UserControl x:Class="SO_Viewbox.MainPage"
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"
d:DesignHeight="300" d:DesignWidth="400"
xmlns:local="clr-namespace:SO_Viewbox">
<Viewbox>
<Canvas Width="400" Height="400" Background="Yellow">
<local:Snapper Snap="TopLeft">
<Rectangle Width="200" Height="400" Fill="Blue" />
</local:Snapper>
<local:Snapper Canvas.Left="200" Snap="TopLeft">
<Rectangle Width="200" Height="400" Fill="Blue" />
</local:Snapper>
</Canvas>
</Viewbox>
</UserControl>
He also shows how to implement it as a dependency property. It would be nice if you could modify Viewbox to correct the issue, but it seems to me that this can't simply be solved by modifying the Viewbox's transform -- that instead, pixel snapping must be applied to each of the decendant elements of the Viewbox.
Canvas.Leftof the second rectangle to the right most coordinate of the 1st. – ChrisF Mar 25 '11 at 15:38ScaleTransformin theRenderTransformof the Canvas without a view box. – AnthonyWJones Mar 25 '11 at 21:31