Completed
Last Updated: 23 Nov 2016 11:56 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 18 Nov 2016 11:41
Category: RibbonBar
Type: Bug Report
1
FIX. RadRibbonBar - RadGalleryElement.DropDownSizingMode property is not respected
Set the RadGalleryElement.DropDownSizingMode property to Telerik.WinControls.UI.SizingMode.None. however, you will notice that when the gallery's popup is opened, the grip is visible. Please refer to the attached project.

Workaround:

Sub New()
    
    InitializeComponent()

    AddHandler Me.RadGalleryElement1.DropDownOpened, AddressOf DropDownOpened

End Sub

Private Sub DropDownOpened(sender As Object, e As EventArgs)
    Me.RadGalleryElement1.GalleryPopupElement.SizingGrip.SizingMode = Telerik.WinControls.UI.SizingMode.None
End Sub

0 comments