Cast sender object in event handler using GetType().Name - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T09:00:41Zhttp://stackoverflow.com/feeds/question/634112http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/634112/cast-sender-object-in-event-handler-using-gettype-name0Cast sender object in event handler using GetType().Nametfl2009-03-11T11:18:03Z2009-03-11T11:47:23Z
<p>I have an event handler for a Textbox as well as for a RichTextBox.
The code is identical, but</p>
<p>In handler #1 i do:</p>
<pre><code>RichTextBox tb = (RichTextBox)sender
</code></pre>
<p>In handler #2 accordingly:</p>
<pre><code>TextBox tb = (TextBox)sender
</code></pre>
<p>Doing so i can fully manipulate the sending control.
What i want to know is how can i cast the sending object to Textbox or RichTextbox according to its type using</p>
<pre><code>sender.GetType().Name
</code></pre>
<p>and then create the control at runtime and work with it. That way i only need one event handler function: less code, less errors, easier to maintain and DRY :-)</p>
http://stackoverflow.com/questions/634112/cast-sender-object-in-event-handler-using-gettype-name/634132#6341321Answer by Chris S for Cast sender object in event handler using GetType().NameChris S2009-03-11T11:22:25Z2009-03-11T11:22:25Z<pre><code>RichTextBox textbox = sender as RichTextBox;
if (textbox != null)
{
// do stuff as a rtb
textbox.Text = "I'm a rtb";
return;
}
TextBox textbox = sender as TextBox;
if (textbox != null)
{
// do stuff as a textbox
textbox.Text = "I'm a textbox";
}
</code></pre>
http://stackoverflow.com/questions/634112/cast-sender-object-in-event-handler-using-gettype-name/634133#6341330Answer by Stuart Dunkeld for Cast sender object in event handler using GetType().NameStuart Dunkeld2009-03-11T11:22:31Z2009-03-11T11:22:31Z<p>Rather than the type name you could use 'is':</p>
<pre><code>if (sender is RichTextBox)
{
...
}
else if (sender is TextBox)
{
...
}
</code></pre>
http://stackoverflow.com/questions/634112/cast-sender-object-in-event-handler-using-gettype-name/634134#6341342Answer by Peter Lillevold for Cast sender object in event handler using GetType().NamePeter Lillevold2009-03-11T11:22:33Z2009-03-11T11:29:15Z<p>Casting can only be done at compile-time and thus you need to know the types that you wish to cast to at compile-time. A runtime Type (as returned by GetType()) can therefore not be used when casting.</p>
<p>If it is polymorphism you are looking for you could access the Name property through reflection. I wouldn't go that way though just to be able to reuse event handlers. </p>
<p>If you want strong typing, a common base class or interface on the two senders is the only way to go.</p>
http://stackoverflow.com/questions/634112/cast-sender-object-in-event-handler-using-gettype-name/634136#6341360Answer by leppie for Cast sender object in event handler using GetType().Nameleppie2009-03-11T11:22:47Z2009-03-11T11:22:47Z<p>You never have to cast. I used to think the same way when I started, this 'pattern' is incorrect, and not really logical.</p>
<p>Your best bet is to use something like:</p>
<pre><code>if (sender is TextBox)
{
TextBox tb = (TextBox)sender;
}
else if (sender is RichTextBox)
{
RichTextBox rtb = (RichTextBox)sender;
}
else
{
// etc
}
</code></pre>
http://stackoverflow.com/questions/634112/cast-sender-object-in-event-handler-using-gettype-name/634137#6341370Answer by Marc Gravell for Cast sender object in event handler using GetType().NameMarc Gravell2009-03-11T11:22:57Z2009-03-11T11:22:57Z<p>If the code is identical, do you need to care? I wonder if casting to <code>Control</code> wouldn't give you everything you need...</p>
<p>One complex handler is not necessarily better than several simple handlers. Either way, if you <em>have</em> to go this route, "as"/"is" is preferable (it isn't dependent on strings etc):</p>
<pre><code>TextBox tb = sender as TextBox;
if(tb!=null) {/* TextBox specific code */}
...
</code></pre>
http://stackoverflow.com/questions/634112/cast-sender-object-in-event-handler-using-gettype-name/634140#6341401Answer by Kieron for Cast sender object in event handler using GetType().NameKieron2009-03-11T11:23:37Z2009-03-11T11:23:37Z<p>Depending on what properties you need, you could cast the sender as a TextBoxBase as both the TextBox and RichTextBox both inherit from that sub-class.</p>
http://stackoverflow.com/questions/634112/cast-sender-object-in-event-handler-using-gettype-name/634164#6341640Answer by gk for Cast sender object in event handler using GetType().Namegk2009-03-11T11:29:52Z2009-03-11T11:29:52Z<p>if you dont want to repeat the code then you can cast both the controls, refactor the common actions to a separate method which takes TextBoxBase as an argument. And in your event handlers convert the controls to System.Windows.Forms.TextBoxBase as both controls are derived from the TexbBoxBase and call the method.</p>
<p>Please note If you need specific properties of any of these controls then this refactoring wont work.</p>
http://stackoverflow.com/questions/634112/cast-sender-object-in-event-handler-using-gettype-name/634192#6341920Answer by tfl for Cast sender object in event handler using GetType().Nametfl2009-03-11T11:47:23Z2009-03-11T11:47:23Z<p><strong>thanks to all!</strong></p>