Click here to Skip to main content
15,888,802 members
Everything / User Controls

User Controls

user-controls

Great Reads

by Christoph Buenger
Describes PHP application development with the free Scavix Web Development Framework (Scavix-WDF).
by Avelino Ferreira
The easiest way to implement the ToolStripControlHost and ToolStripDropDown classes, in a UserControl, in order to display a Container/Control beyond the limits of its Parent Container and Parent Form, with very few lines of code. Let's uncomplicate ...
by MarkLTX
A subclass of the WPF TextBox control that displays an ellipsis when the text doesn't fit.
by freedeveloper
A small control to control paging in Windows Presentation Foundation.

Latest Articles

by Michael Haephrati
How can a Static Library embed resources and other data so any application (even a Console based one) can use them.
by Adam Zgagacz
Simple WinForms auto-repeat button in a few lines
by WyoMetz
Simple and easy paging of a WPF DataGrid with DataTable and LINQ queries
by Stas Wolski
This article describes how to implement a meeting room booking system in an ASP.NET MVC project with dhtmlxScheduler.

All Articles

Sort by Updated

User Controls 

21 Jul 2016 by Vincent Maverick Durano
A quick demo on how to pass values from a modal-grid WebUserControl to main page based on the selected row in GridView.
28 Jun 2016 by Anshu Krishna
Creating parent/child relations between checkboxes
24 Jun 2015 by Nadun Liyanage
This tip describes creating a user control to display a drop down calculator that pops out like the DateTimePicker in Visual Studio
10 May 2015 by Peer Adi
This is a liquid container control for displaying liquid level in container or tank.
8 Mar 2015 by Komail Haider
.Net control/wrapper for the Google NEW ReCaptcha API 2.0
1 Jan 2015 by Benjamin Lifshitz
With this code, you can print images quickly and efficiently, using the largest part of the A4 page for your image.
18 Oct 2014 by Marco Bertschi
A short guide on how you can style and customize the appearance of you QML controls in a CSS-like way
11 Jun 2014 by Sen Jacob
This is an alternative for "A Task Scheduler Library for .NET Applications"
10 Jun 2014 by Sen Jacob
A simple task scheduler utility by which you can schedule a task to run at any time or interval
14 May 2014 by atlaste
How to fix hiding controls in the Visual Studio user control designer
6 May 2014 by Daniel Lieberwirth (BrainInBlack)
This describes a simple way to create interactive, bitmap based, buttons for WinForm applications.
17 Aug 2013 by adriancs
An Office 2010 Style Color Picker for .NET WinForm.
28 May 2013 by mohammad amiri
A textbox usercontrol that displays numbers separated by comma such as currency.
23 May 2013 by RelicV
Alternative for AutoComplete control without Ajax and Webservices
20 Apr 2013 by Aliaa Ezzat
16 Mar 2013 by AfnanMof
This WebPart is developed to display all site collections and subsites based on logged in authentication
19 Feb 2013 by sri senthil kumar
Custom Treeview control useful when multilevel hierarchical data need to be displayed and setting default can go at any level and providing access to each level then this can be the right choice.
18 Sep 2012 by Sudip Saha
Load usercontrol dynamically and fire usercontrol's button event on content page.
8 Sep 2012 by suhas.shiv
Custom CheckBoxList in ASP.NET MVC3
30 Jul 2012 by Kashif_Imran
A simple Caret for WPF User Controls
15 Jul 2011 by BillWoodruff
An interesting change in behavior in VS 2010 Pro ?
17 May 2011 by Riaan Booyzen
This Tip/Trick explains how to develop user-controls for Sharepoint a little faster
13 Nov 2010 by PSU Steve
You can just use "not IsDisable" versus the IF...ELSE block. Additionally, the recursive call to ControlStatus should be done all the time so that the parent control is enabled/disabled along with the children. // to enable\disable the control & its child controls public...
13 Nov 2010 by jarvisa
public void ControlStatus(Control control, bool isDisable){ foreach (Control c in control.Controls) if (c.HasControls()) ControlStatus(c, isDisable); else { WebControl wc = c as WebControl; if (wc != null) ...
13 Nov 2010 by a_pess
Alternative For VB.NET Windows Forms Private Sub ControlEnabled(ByVal ctrl As Control, ByVal isDisable As Boolean) Me.ControlEnabled(ctrl, isDisable, True) End Sub Private Sub ControlEnabled(ByVal ctrl As Control, ByVal isDisable As Boolean, ByVal allowRecurse As...