Click here to Skip to main content
15,890,557 members
Articles / Desktop Programming / Windows Forms
Alternative
Tip/Trick

Adding Functionality To .NET Controls

Rate me:
Please Sign up or sign in to vote.
3.00/5 (2 votes)
7 Aug 2014CPOL 8.7K   5   1
This is an alternative for "Adding Functionality To .NET Controls"

Introduction

Demonstrates an event handler to clear the Text of a Control after some timeout period.

Background

The Tip to which I offer this as an alternative deals with wrapping a Control in order to add functionality. But, as I noted in my comment, the particular functionality demonstrated doesn't require wrapping the Control; all it requires is an event handler, which can belong to any class.

The related Tip is a good demonstration of wrapping a Control, but wrapping should probably be a last resort.

Using the code

The static class below provides an event handler suitable for the TextChanged event of any WinForms Control:

C#
label1.TextChanged += TextClearer.ClearText ;

Later in the application the Control may have its Text changed to some value:

C#
label1.Text = "Done" ;

The Interval defaults to five seconds, but it can be changed as needed. The Interval value in place when the event handler is called will be used.

C#
TextClearer.Interval = 10 ;

TextClearer: A static class that simply provides an event handler

This is a very simply class, with only the minimum features required for this simple demonstration.

C#
public static partial class TextClearer
{
  public static int Interval = 5 ;

  public static void
  ClearText
  (
    object           control
  ,
    System.EventArgs textchanged
  )
  {
    System.Windows.Forms.Control c = control as System.Windows.Forms.Control ;

    if ( ( Interval > 0 ) && ( c != null ) && ( c.Text.Length > 0 ) )
    {
      System.Windows.Forms.Timer t = new System.Windows.Forms.Timer()
      {
        Interval = Interval * 1000
      } ;

      t.Tick += delegate
      (
        object           timer
      ,
        System.EventArgs tick
      )
      {
        t.Stop() ;

        c.Text = System.String.Empty ;

        return ;
      } ;

      t.Start() ;
    }

    return ;
  }
}

History

2014-08-07 First submitted

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
BSCS 1992 Wentworth Institute of Technology

Originally from the Boston (MA) area. Lived in SoCal for a while. Now in the Phoenix (AZ) area.

OpenVMS enthusiast, ISO 8601 evangelist, photographer, opinionated SOB, acknowledged pedant and contrarian

---------------

"I would be looking for better tekkies, too. Yours are broken." -- Paul Pedant

"Using fewer technologies is better than using more." -- Rico Mariani

"Good code is its own best documentation. As you’re about to add a comment, ask yourself, ‘How can I improve the code so that this comment isn’t needed?’" -- Steve McConnell

"Every time you write a comment, you should grimace and feel the failure of your ability of expression." -- Unknown

"If you need help knowing what to think, let me know and I'll tell you." -- Jeffrey Snover [MSFT]

"Typing is no substitute for thinking." -- R.W. Hamming

"I find it appalling that you can become a programmer with less training than it takes to become a plumber." -- Bjarne Stroustrup

ZagNut’s Law: Arrogance is inversely proportional to ability.

"Well blow me sideways with a plastic marionette. I've just learned something new - and if I could award you a 100 for that post I would. Way to go you keyboard lovegod you." -- Pete O'Hanlon

"linq'ish" sounds like "inept" in German -- Andreas Gieriet

"Things would be different if I ran the zoo." -- Dr. Seuss

"Wrong is evil, and it must be defeated." –- Jeff Ello

"A good designer must rely on experience, on precise, logical thinking, and on pedantic exactness." -- Nigel Shaw

“It’s always easier to do it the hard way.” -- Blackhart

“If Unix wasn’t so bad that you can’t give it away, Bill Gates would never have succeeded in selling Windows.” -- Blackhart

"Use vertical and horizontal whitespace generously. Generally, all binary operators except '.' and '->' should be separated from their operands by blanks."

"Omit needless local variables." -- Strunk... had he taught programming

Comments and Discussions

 
QuestionCode style Pin
Carlos19078-Aug-14 1:32
professionalCarlos19078-Aug-14 1:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.