This is a migrated thread and some comments may be shown as answers.

Generate Event Methods, etc.

2 Answers 49 Views
Code Generation
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Brian Mains
Top achievements
Rank 1
Brian Mains asked on 24 Apr 2010, 04:48 PM
Hello,

Does JustCode have the ability to right-click an event and generate an event method like:

right click: public event EventHandler SomeEvent;

And it would generate:

protected virtual void OnSomeEvent(EventArgs e)
{
     if (SomeEvent != null)
        SomeEvent(this, e);
}
Thanks.

2 Answers, 1 is accepted

Sort by
0
Tsviatko Yovtchev
Telerik team
answered on 29 Apr 2010, 08:57 AM
Hello Brian Mains,

 Rather unfortunately, we don't have this functionality as of present. However, it seems to be really useful so I am gonna include it in our "To Do" list. Thanks a bunch for noticing that.

Best wishes,
Tsviatko Yovtchev
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Brian Mains
Top achievements
Rank 1
answered on 29 Apr 2010, 06:41 PM
You are welcome, and thanks for adding it to the list.
Tags
Code Generation
Asked by
Brian Mains
Top achievements
Rank 1
Answers by
Tsviatko Yovtchev
Telerik team
Brian Mains
Top achievements
Rank 1
Share this question
or