I've created a custom binding navigator that inherits from the default to be able to optionally cancel the button navigation. When I add the custom navigator to the form, I don't get the default images. Instead they all use a default image like the attached image. How can I create a custom navigator with the standard button images?
This issue happens even if there is no custom code like the example below:
Public Class CancelBindingNavigator Inherits RadBindingNavigator Protected Overrides Function CreateNavigatorElement() As RadBindingNavigatorElement Return New RadBindingNavigatorElement() End FunctionEnd Class