We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

GridRecordNavigationControl - ArrowButtonClicked event not firing?

I''ve attached an event handler to ArrowButtonClicked to a GridRecordNavigationControl that''s holding a GDBG. I set a breakpoint in the handler and it appears that the event isn''t firing regardless of which button I click on. I''m using version 2.1.0.9 - is this event not working in this version?

1 Reply

AD Administrator Syncfusion Team June 3, 2005 12:29 AM UTC

Try using this.gridRecordNavigationControl1.NavigationBar instead of this.gridRecordNavigationControl1.
using Syncfusion.Windows.Forms;
this.gridRecordNavigationControl1.NavigationBar.ArrowButtonClicked += new ArrowButtonEventHandler(bar_ArrowButtonClicked);
private void bar_ArrowButtonClicked(object sender, ArrowButtonEventArgs e)
{
     MessageBox.Show(" Button Clicked");
}

Loader.
Live Chat Icon For mobile
Up arrow icon