Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6679101
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T04:19:13+00:00 2026-05-26T04:19:13+00:00

I have a problem with adding parameters to EventHandler. I have a control when

  • 0

I have a problem with adding parameters to EventHandler.
I have a control when user select message and choose to who he want to send it.

I need to handler OnConfirmForwarClosed add in some way variable item.

How can I do it?

private void inboxContextMenu_ItemClick(object sender, Telerik.Windows.RadRoutedEventArgs e)
        {
            var item = (RadMenuItem)e.Source;
            RadWindow.Confirm("Do you want forward this message to item.DataContext.HandlerName ?", OnConfirmForwarClosed);


        }

        private void OnConfirmForwarClosed(object sender, WindowClosedEventArgs e)
        {
            if (e.DialogResult == true)
            {
         //here I need item from caller
            }
        }

EDIT
I need a result which I can get by this solution:

 RadWindow.Confirm("Do you want forward this message to item.DataContext.HandlerName ?",(s,ea)=>
                                         {
                                             if(ea.DialogResult==true)
                                             {
                                                 MessageBox.Show((item.DataContext as Handler).HandlerId.ToString());
                                             }
                                         });
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T04:19:13+00:00Added an answer on May 26, 2026 at 4:19 am

    If i understand your question correctly, you don’t want to “lift” the local variable into lambda, such as…

    void inboxContextMenu_ItemClick(object sender, Telerik.Windows.RadRoutedEventArgs e) {
        var item = (RadMenuItem)e.Source;
        RadWindow.Confirm(
            "Do you want forward this message to item.DataContext.HandlerName ?",
            (sender, e) => {
                if (e.DialogResult == true) {
                    // You can use 'item' here directly.
                }
            }
        );
    }
    

    …and instead you want to keep the OnConfirmForwarClosed (presumably to subscribe to events not shown here). If that’s correct, then you have couple of options:

    1.

    You could just arrange your methods differently:

    void inboxContextMenu_ItemClick(object sender, Telerik.Windows.RadRoutedEventArgs e) {
        var item = (RadMenuItem)e.Source;
        RadWindow.Confirm(
            "Do you want forward this message to item.DataContext.HandlerName ?",
            (sender, e) => OnConfirmForwarClosedImp(sender, e, item)
        );
    }
    
    void OnConfirmForwarClosedImp(object sender, WindowClosedEventArgs e, RadMenuItem item) {
        if (e.DialogResult == true) {
            if (item != null) {
                // Use 'item'.
            }
            else {
                // OnConfirmForwarClosed was called from somewhere else.
            }
        }
    }
    
    void OnConfirmForwarClosed(object sender, WindowClosedEventArgs e) {
        OnConfirmForwarClosedImp(sender, e, null);
    }
    

    2.

    Set the object field:

    void inboxContextMenu_ItemClick(object sender, Telerik.Windows.RadRoutedEventArgs e) {
        item = (RadMenuItem)e.Source;
        try {
            RadWindow.Confirm(
                "Do you want forward this message to item.DataContext.HandlerName ?",
                OnConfirmForwarClosed
            );
        }
        finally {
            item = null;
        }
    }
    
    RadMenuItem item = (RadMenuItem)e.Source;
    
    void OnConfirmForwarClosed(object sender, WindowClosedEventArgs e) {
        if (e.DialogResult == true) {
            if (item != null) {
                // Use 'this.item'.
            }
            else {
                // OnConfirmForwarClosed was called from somewhere else.
            }
        }
    }
    

    3.

    Co-opt one of the existing OnConfirmForwarClosed parameters:

    void inboxContextMenu_ItemClick(object sender, Telerik.Windows.RadRoutedEventArgs e) {
        var item = (RadMenuItem)e.Source;
        RadWindow.Confirm(
            "Do you want forward this message to item.DataContext.HandlerName ?",
            (sender, e) => OnConfirmForwarClosed(item, e)
        );
    }
    
    void OnConfirmForwarClosed(object sender, WindowClosedEventArgs e) {
        if (e.DialogResult == true) {
            var item = sender as RadMenuItem;
            if (item != null) {
                // Use 'item'.
            }
            else {
                // OnConfirmForwarClosed was called from somewhere else.
            }
        }
    }
    

    Etc, etc…

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a problem adding ADO.Net Entity Data Model to my existing project, or
I have a problem adding entities to a collection. public void SaveNotificationUsergroups(int bookingobjectID, int[]
I have some problem with my .htaccess file. Here I am adding my problem.
I have problem with return statment >.< I want to store all magazine names
I have a little problem to detect when the application is finished. I need
I have problem in some JavaScript that I am writing where the Switch statement
I have problem with starting processes in impersonated context in ASP.NET 2.0. I am
I have problem compilin this code..can anyone tell whats wrong with the syntax CREATE
I have problem with ActionLink. I'd like to pass to my ActionLink parameter for
I have problem when I try insert some data to Informix TEXT column via

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.