I am relatively new to programming, as you will soon see...
I have 2 events, which execute the same code. I currently have the following pseudo code for a datagridview:
private void dgv_CellEnter(object sender, DataGridViewCellEventArgs e)
{
string abc = "abc";
}
private void dgv_CellClick(object sender, DataGridViewCellEventArgs e)
{
string abc = "abc";
}
Is there a way to combine this into one event? Is there a better way to do this?
C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...
In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.
What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.
C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.
Why not just have one method and map it to two events?
private void dgv_CellEvent(object sender, DataGridViewCellEventArgs e)
{
string abc = "123";
}
// In the event mapping
dgv.CellEnter += dgv_CellEvent;
dgv.CellClick += dgv_CellEvent;
Well the quick answer is yes. Put the guts of the methods in its own method and then just have the onclick event call that method. This will give you only one place to update code should it need to change.
There are a 100 different ways to do this, and this is prob the easiest.
So create something like this:
protected void MyNewMethod()
{
string abc = "123";
}
and then your other methods will just call it like this:
private void dgv_CellEnter(object sender, DataGridViewCellEventArgs e)
{
MyNewMethod();
}
private void dgv_CellClick(object sender, DataGridViewCellEventArgs e)
{
MyNewMethod();
}
Just call the same method from the markup. You really only need one of those methods and the event in the markup can call the same one.
In the property window (using C# Express) you can select event handlers in a drop-down, or manually type the name of a method. The signature just has to match. I'm assuming that this is the same in VS.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With