I have this:
...
I want to bind only the \"Top\" part of the TabContr
Actually Margin property of a control is of Thickness Type. So we can bind it to Property if type Thickness.
public Thickness LeftMargin { get; set; }
and You can set a part of a Thickness object too. Like -
LeftMargin = new Thickness(20,0,0,0);
and in Xaml we can bind this property directly to margin property of any element..like this..