This question is locked. New answers and comments are not allowed.
I am trying to generate a grid, where the last column will have data in it that is long and will be forced to wrap.
However, when I do this, the other columns are all aligned vertically in the center. I have tried almost every property related to alignment in the grid, in the templates, and even outside, and can't find a way to get the alignment to go to the TOP by default for the columns.
Here is a simply slimmed down version of my grid to demonstrate the issue. I have hard coded the last column to 100 for height, but it actually varies and is usually larger than that.
<UserControl xmlns:controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls" xmlns:telerikGridView="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView" x:Class="SilverlightApplication2.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:DesignWidth="640" d:DesignHeight="480">
<Grid x:Name="LayoutRoot" VerticalAlignment="Top">
<telerikGridView:RadGridView>
<telerikGridView:RadGridView.Columns>
<telerikGridView:GridViewColumn Header="Edit">
<telerikGridView:GridViewColumn.CellTemplate>
<DataTemplate>
<Button Content="Edit" />
</DataTemplate>
</telerikGridView:GridViewColumn.CellTemplate>
</telerikGridView:GridViewColumn>
<telerikGridView:GridViewColumn Header="Date" >
<telerikGridView:GridViewColumn.CellEditTemplate>
<DataTemplate>
<controls:DatePicker VerticalAlignment="Top" />
</DataTemplate>
</telerikGridView:GridViewColumn.CellEditTemplate>
<telerikGridView:GridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock VerticalAlignment="Top" />
</DataTemplate>
</telerikGridView:GridViewColumn.CellTemplate>
</telerikGridView:GridViewColumn>
<telerikGridView:GridViewColumn Header="Hours">
<telerikGridView:GridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock VerticalAlignment="Top" />
</DataTemplate>
</telerikGridView:GridViewColumn.CellTemplate>
</telerikGridView:GridViewColumn>
<telerikGridView:GridViewColumn Header="Activities">
<telerikGridView:GridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock Height="100" />
</DataTemplate>
</telerikGridView:GridViewColumn.CellTemplate>
</telerikGridView:GridViewColumn>
</telerikGridView:RadGridView.Columns>
</telerikGridView:RadGridView>
</Grid>
</UserControl>