In the inherited ui source code can you please change the browse dialog property type from a dev ex browse dialog to SF browse dialog? That way either type of browse dialog can be used with the maintenance for toolstrip as the dev ex inherits from the StrataFrame.UI.Windows.Forms.BrowseDialog
''' <summary>
''' The browse dialog form to display when the Browse button is clicked by the user.
''' </summary>
''' <remarks></remarks>
<Category(FORM_FRAMEWORK_CATEGORY), Description("The browse dialog form to display when the Browse button is clicked by the user.")> _
Public Property BrowseDialog() As BrowseDialog
Get
Return _BrowseDialog
End Get
Set(ByVal value As BrowseDialog)
_BrowseDialog = value
'-- Set the visibility
SetObjectVisibility()
End Set
End Property
--TO
''' <summary>''' The browse dialog form to display when the Browse button is clicked by the user.''' </summary>''' <remarks></remarks><Category(FORM_FRAMEWORK_CATEGORY), Description(
"The browse dialog form to display when the Browse button is clicked by the user.")> _Public Property BrowseDialog() As MicroFour.StrataFrame.UI.Windows.Forms.BrowseDialogGetReturn _BrowseDialogEnd GetSet(ByVal value As MicroFour.StrataFrame.UI.Windows.Forms.BrowseDialog)_BrowseDialog = value
'-- Set the visibilitySetObjectVisibility()
End SetEnd Property