I've got a RadGridView on a WPF form. The control is in a cell of a Grid control. The cell isn't tall enough to show a full number of rows all of the same height. That is, the last row at the bottom is displaying as a partial row.
When I scroll all the way down to the bottom, the last row is not displaying fully. Even though the scroll bar is all the way down, it doesn't scroll the whole last row into view.
How do I fix this so the last row will display in full?
Tony
Edit: Here is the XAML for the RadGridView control:
When I scroll all the way down to the bottom, the last row is not displaying fully. Even though the scroll bar is all the way down, it doesn't scroll the whole last row into view.
How do I fix this so the last row will display in full?
Tony
Edit: Here is the XAML for the RadGridView control:
<
my:RadGridView
AlternationCount
=
"1"
AutoExpandGroups
=
"True"
AutoGenerateColumns
=
"False"
CanUserDeleteRows
=
"False"
CanUserFreezeColumns
=
"False"
CanUserInsertRows
=
"False"
CanUserResizeColumns
=
"True"
CanUserSortColumns
=
"True"
DataLoadMode
=
"Asynchronous"
EnableColumnVirtualization
=
"True"
EnableRowVirtualization
=
"True"
FontSize
=
"18"
FontWeight
=
"Bold"
Grid.Column
=
"1"
Grid.Row
=
"1"
IsReadOnly
=
"True"
Margin
=
"5"
Name
=
"HotListResults"
SelectionChanged
=
"HotListResults_SelectionChanged"
SelectionUnit
=
"FullRow"
ScrollViewer.CanContentScroll
=
"True"
ScrollViewer.HorizontalScrollBarVisibility
=
"Auto"
ScrollViewer.VerticalScrollBarVisibility
=
"Auto"
ShowGroupFooters
=
"True"
ToolTip
=
"Matching Hot List Entries"
>
<
my:RadGridView.Columns
>
<
my:GridViewDataColumn
DataMemberBinding
=
"{Binding ListName, Mode=OneWay}"
Header
=
"Hot List"
Width
=
"150"
/>
<
my:GridViewDataColumn
DataMemberBinding
=
"{Binding AlarmClass, Mode=OneWay}"
Header
=
"Alarm Class"
Width
=
"200"
/>
<
my:GridViewDataColumn
DataMemberBinding
=
"{Binding CountryId, Mode=OneWay}"
Header
=
"Country"
Width
=
"100"
/>
<
my:GridViewDataColumn
DataMemberBinding
=
"{Binding LocaleCode, Mode=OneWay}"
Header
=
"State"
Width
=
"75"
/>
<
my:GridViewDataColumn
DataMemberBinding
=
"{Binding Plate, Mode=OneWay}"
Header
=
"Plate"
Width
=
"150"
/>
<
my:GridViewDataColumn
DataMemberBinding
=
"{Binding BeginDate, Mode=OneWay, Converter={StaticResource DateConverter}}"
Header
=
"Begin Date"
Width
=
"200"
/>
<
my:GridViewDataColumn
DataMemberBinding
=
"{Binding EndDate, Mode=OneWay, Converter={StaticResource DateConverter}}"
Header
=
"End Date"
Width
=
"200"
/>
</
my:RadGridView.Columns
>
</
my:RadGridView
>