It doesn't look like your C# code is actually handling the event. In c# you have to explicitly link event to event handler, its not automatic based on function name.
So something like
cmdSeekPrev.Click += cmdSeekPrev_Click(object sender, EventArgs e);
Or select the event handler in the form designer