Cast sender object in event handler using GetType().Name - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T09:00:41Z http://stackoverflow.com/feeds/question/634112 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/634112/cast-sender-object-in-event-handler-using-gettype-name 0 Cast sender object in event handler using GetType().Name tfl 2009-03-11T11:18:03Z 2009-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#634132 1 Answer by Chris S for Cast sender object in event handler using GetType().Name Chris S 2009-03-11T11:22:25Z 2009-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#634133 0 Answer by Stuart Dunkeld for Cast sender object in event handler using GetType().Name Stuart Dunkeld 2009-03-11T11:22:31Z 2009-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#634134 2 Answer by Peter Lillevold for Cast sender object in event handler using GetType().Name Peter Lillevold 2009-03-11T11:22:33Z 2009-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#634136 0 Answer by leppie for Cast sender object in event handler using GetType().Name leppie 2009-03-11T11:22:47Z 2009-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#634137 0 Answer by Marc Gravell for Cast sender object in event handler using GetType().Name Marc Gravell 2009-03-11T11:22:57Z 2009-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#634140 1 Answer by Kieron for Cast sender object in event handler using GetType().Name Kieron 2009-03-11T11:23:37Z 2009-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#634164 0 Answer by gk for Cast sender object in event handler using GetType().Name gk 2009-03-11T11:29:52Z 2009-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#634192 0 Answer by tfl for Cast sender object in event handler using GetType().Name tfl 2009-03-11T11:47:23Z 2009-03-11T11:47:23Z <p><strong>thanks to all!</strong></p>