Does the "Path" object have an "Align" property? That is, can you force it to align right with this XAML?
<Path Grid.Column="1" Align="Right" Style={StaticResource StarStyle}/>
Edit
No, it doesn't. In that case, I'd suggest embedding the path into a container that can align it. Perhaps:
<DockPanel Grid.Column="1">
<Path DockPanel.Dock="Right" Style={StaticResource StarStyle}/>
</DockPanel>
Matt Hamilton
2009-05-13 11:50:15