up vote 1 down vote favorite
share [g+] share [fb]

When I place a control on a tabpage in Silverlight the control is placed ~10 pixels down and ~10 pixels right. For example, the following xaml:

<System_Windows_Controls:TabControl x:Name=TabControlMain Canvas.Left="0" Canvas.Top="75" Width="800" Height="525" Background="Red" HorizontalContentAlignment="Left" VerticalContentAlignment="Top" Padding="0" Margin="0">
        <System_Windows_Controls:TabItem Header="Test" VerticalContentAlignment="Top" BorderThickness="0" Margin="0" Padding="0" HorizontalContentAlignment="Left">
            <ContentControl>
                <Grid Width="400" Height="200" Background="White"/>
                </ContentControl>
        </System_Windows_Controls:TabItem>    
</System_Windows_Controls:TabControl>

will produce:

alt text

How do I position the content at 0,0?

link|improve this question

50% accept rate
Down voting because the only answers that works doesn't make you happy is not right. Sometimes we as programmers are left with the only option being the sucky option. – Stefan Rusek Sep 30 '08 at 16:38
Huh? I'm not sure I understand what you're saying. I haven't marked an answer as accepted yet because I've been focusing on another project and have not had a chance to test ANY of the answers given. – DaveK Oct 3 '08 at 19:29
feedback

4 Answers

up vote 1 down vote accepted

Look at the control template, it has a margin of that size. Use blend to modify the a copy of the tab control's template.

link|improve this answer
feedback

Check the control template of your TabItem , it might have some default Margin of 10. Just a guess

link|improve this answer
feedback

You can also add a negative margin to the content. I found the value to be 9 pixels...

<System_Windows_Controls:TabControl x:Name=TabControlMain Canvas.Left="0" Canvas.Top="75" Width="800" Height="525" Background="Red" HorizontalContentAlignment="Left" VerticalContentAlignment="Top" Padding="0" Margin="0">
        <System_Windows_Controls:TabItem Header="Test" VerticalContentAlignment="Top" BorderThickness="0" Margin="0" Padding="0" HorizontalContentAlignment="Left">
            <ContentControl>
                <Grid Width="400" Height="200" Margin="-9,-9,-9,-9" Background="White"/>
                </ContentControl>
        </System_Windows_Controls:TabItem>    
</System_Windows_Controls:TabControl>
link|improve this answer
feedback

After spending a couple hours fooling around with this problem. Brian is totally right. The current version of VS does not allow changing the TabControl's template, but it can be done using Blend, and there is a margin on the template. The main drawback of doing this is that the XAML file will no longer be previewable from Visual Studio.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.