or
<
telerik:RadMap
Margin
=
"12"
Name
=
"radMap1"
>
<
telerik:InformationLayer
x:Name
=
"informationLayer"
>
<
telerik:InformationLayer.ItemTemplate
>
<
DataTemplate
>
<
Ellipse
Name
=
"myEllipse"
telerik:MapLayer.Location
=
"{Binding Location}"
telerik:MapLayer.BaseZoomLevel
=
"9"
Width
=
"200"
Height
=
"200"
Stroke
=
"{Binding Stroke}"
StrokeThickness
=
"3"
Fill
=
"{Binding Fill}"
Canvas.ZIndex
=
"{Binding ZIndex}"
>
<
telerik:MapLayer.HotSpot
>
<
telerik:HotSpot
X
=
"0.5"
Y
=
"0.5"
/>
</
telerik:MapLayer.HotSpot
>
</
Ellipse
>
</
DataTemplate
>
</
telerik:InformationLayer.ItemTemplate
>
</
telerik:InformationLayer
>
<
telerik:GridViewColumn
>
<
telerik:GridViewColumn.CellTemplate
>
<
DataTemplate
>
<
telerik:RadButton
Content
=
"Edit"
Command
=
"telerikGrid:RadGridViewCommands.BeginEdit"
CommandParameter
=
"{Binding}"
/>
</
DataTemplate
>
</
telerik:GridViewColumn.CellTemplate
>
</
telerik:GridViewColumn
>
public
MainPage()
{
ICommand editCommand = RadGridViewCommands.BeginEdit;
InitializeComponent();
}
I wanted to remove the additional column added after all RadGridView columns, so I set the last column width property to *,
but then, when one of the columns content is longer than the RadGridView width - the horizontal scrollbar doesn't appears.
How can I remove the additional column without losing the horizontal scrollbar?
Thanks,