.NET news » Search results

Search results for query "Control" (238):

C# Program Flow Control: The Foreach Loop

The thirtieth part of the C# Fundamentals tutorial continues the multi-part examination of the program flow control commands available to the C# developer. This article examines the foreach loop structure that cycles through each item in a collection.
2007-02-20 00:00:04   Source: C# Program Flow Control: The Foreach...   Tags: C#

Simple TextBox Derived Custom Control: Filter Key Input

This is an example of a Custom Control that inherits from a TextBox and does a simple enhancement to the TextBox
2010-10-22 13:47:00   Source: Simple TextBox Derived Custom   Tags: Examples

Filmstrip control for Windows Forms

An article describing a C# Filmstrip control designed for Windows forms
2008-06-17 06:35:00   Source: Filmstrip control for Windows Forms   Tags: Examples

Six Silverlight ListBox Tips

The Silverlight ListBox is much more than you may think. When most people think of a ListBox they typically think of just a simple control that displays rows of text. However, the Silverlight ListBox is one of the most flexible controls you will find. I tend to think of the ListBox as similar to the ASP.NET Repeater control as it too is very flexible. In this article, I will show you six different ways to display data in a Silverlight ListBox.

2011-06-30 19:00:00   Source: Six Silverlight ListBox Tips   Tags: ASP.NET

Nullable Compact Framework DateTimePicker Custom Control

A custom DateTimePicker control for the Compact Framework which handles DBNull values

ASP.NET AJAX MultiHandleSliderExtender - Slide by Year and Month

In this tutorial, I will demonstrate how to use MultiHandleSlider extender to choose or display year and month in a range. This control eliminates the need to use four DropDownlist controls to hold the range values and validation control for validating user selection. Then we will use the Column Chart to display number of cars on Sesame Street based on the selected range values.
2010-04-20 12:53:00   Source: ASP.NET AJAX MultiHandleSliderExtender - Slide by Year...   Tags: Ajax

Building a PreserveProperty Control in ASP.NET 2.0

ASP.NET provides a couple of page-level state persistence mechanisms in ViewState and the new ControlState. While both mechanisms work, they both have some limitations in that they are not deterministic for the application developer-ViewState can be turned off and can be very bulky, and ControlState can only be set from within a control implementation. In this article I'll show another, more flexible state mechanism using a PreservePropertyControl that allows automatic persistence and restoration of field values automatically without requiring ViewState.

2007-03-01 18:00:00   Source: Building a PreserveProperty Control...   Tags: ASP.NET

Custom Spider or Radar Chart Control

An easy to use WPF spider (radar) chart control.
2012-08-25 12:48:00   Source: Custom Spider or Radar Chart Control   Tags: WPF

Silverlight user control validation

Silverlight User control validation display techniques
2011-12-01 12:27:00   Source: Silverlight user control validation   Tags: Silverlight

CSS Syntax Highlighting in the DigitalRune Text Editor Control

For projects where I need some form of syntax highlighting, I tend to use the open source DigitalRune Text Editor Control which is a modified version of the text editor used in SharpDevelop. While it has a number of syntax definitions built in, the one it didn't have was for CSS formatting.After doi