When I am trying to open the screen I got the following exception:
Unable to cast object of type 'System.Windows.Controls.Grid' to type 'System.Windows.Controls.TabItem'
Any help will be appreciated.
partial void VouchersDetail_Created()
{
this.FindControl("JournalVoucher").ControlAvailable += JournalVoucher_ControlAvailable;
}
void JournalVoucher_ControlAvailable(object sender, ControlAvailableEventArgs e)
{
((System.Windows.Controls.TabItem)e.Control).KeyUp += JournalVoucher_KeyUp;
}
void JournalVoucher_KeyUp(object sender, KeyEventArgs e)
{
if (e.Key == Key.V)
{
if ((Keyboard.Modifiers & ModifierKeys.Control) == ModifierKeys.Control)
{
var tabitem = (System.Windows.Controls.TabItem)sender;
tabitem.IsEnabled = true;
}
}
}
Thanks
((System.Windows.Controls.TabItem)e.Control).KeyUp += JournalVoucher_KeyUp;Is there any workaround for this? – user1883843 Dec 6 '12 at 22:26