This question is locked. New answers and comments are not allowed.
Hello,
I am using telerik:RadGridView.
Outside the grid, at the bottom, I want to position a stackpanel exactly under it's 6th column.
Using margins does not help because it changes between screen resolutions.
How do I find the relative position for the stackpanel?
The code is like this :
<telerik:RadGridView>
........
</telerik:RadGridView>
<StackPanel
Margin="0,10,170,0"
HorizontalAlignment="Center"
Orientation="Horizontal">
<TextBlock VerticalAlignment="Center" Text="Total Balance:" />
<Border VerticalAlignment="Top">
<TextBlock Width="100"
VerticalAlignment="Center"
FlowDirection="LeftToRight"
Padding="3"
Text="{Binding TotalPaymentBalance, StringFormat='{}{0:C2}',Mode=OneWay}" />
</Border>
</StackPanel>
Thanks
I am using telerik:RadGridView.
Outside the grid, at the bottom, I want to position a stackpanel exactly under it's 6th column.
Using margins does not help because it changes between screen resolutions.
How do I find the relative position for the stackpanel?
The code is like this :
<telerik:RadGridView>
........
</telerik:RadGridView>
<StackPanel
Margin="0,10,170,0"
HorizontalAlignment="Center"
Orientation="Horizontal">
<TextBlock VerticalAlignment="Center" Text="Total Balance:" />
<Border VerticalAlignment="Top">
<TextBlock Width="100"
VerticalAlignment="Center"
FlowDirection="LeftToRight"
Padding="3"
Text="{Binding TotalPaymentBalance, StringFormat='{}{0:C2}',Mode=OneWay}" />
</Border>
</StackPanel>
Thanks
