Tag: C#

  • Creator of C Programming Language, Dennis Ritchie, Dies at 70

    Creator of C Programming Language, Dennis Ritchie, Dies at 70

    If I were a revolutionary in the tech industry, I’d be a little worried. Just a few days after the death of Steve Jobs, the tech community has lost another game-changing leader on October 12 — Dennis Ritchie. While considerably less famous than Jobs, Ritchie was the father of the C programming language, which he…

  • How to Stretch a Menu Control to the Width of a Window in WPF

    If you’ve ever created a Menu in WPF, you’ve probably noticed something peculiar: A Menu will not stretch to fill the entire width of its parent container. If you set the Menu’s width to ‘auto’ or delete the width property altogether, the Menu will shrink to the maximum width needed by its MenuItem elements (so…

  • How to Create a HTML-style ComboBox in WPF and C#

    Before I started doing software development in C# and WPF, I spent quite a bit of time with HTML. Because of this, I was used to having the ability to create drop-down boxes (known as select in HTML) to display lists of information with a “front-end” value the user could see and a “back-end” value…