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.
Up arrow icon