|
|
|
|
|
| | Total Hits: 0 | Today: 0 | Author: Bassam Alugili | Rating:  |
| |  This is a simple ComboBox that displays images to the user. I saw many other solutions, most of which are complex and override most ComboBox class properties and the draw methods which may cause a lot of problems.... |
| | Total Hits: 6 | Today: 0 | Author: Syed Irtaza Ali | Rating:  |
| |  After a long day of struggle to get DevExpress XtraGrid working with an unbound CheckBox colum, I eventually succeeded, but at the cost of UI consistency. So I had to go for another option... CheckedListBoxControl.
Using .NET standard CheckedListBoxControl, I couldn't find the properties DataSource, DisplayMember, and ValueMember. Probably the reason would be an older .NET Framework. So instead of getting into the hassle, I decided to use the DevExpress CheckedListBoxControl.... |
| | Total Hits: 1 | Today: 0 | Author: Chirag Maisuriya | Rating:  |
| |  This article is for those who want to bind the DropdownListbox control in Web/Window Form to the Enum data type.... |
| | Total Hits: 0 | Today: 0 | Author: pseudonym67 | Rating:  |
| |  The ColorComboBox class has been put together as part of another project I am working on. The idea is obviously that you can change the color of certain things within the application. Unfortunately, the way to do this in most Windows applications is to pop up the standard color dialog box and select a color that you want. I'm sure I'm not the only one who finds this tacky, and thinks there should be a way of doing it that doesn't draw attention away from your application. For this reason, I came... |
| | Total Hits: 0 | Today: 0 | Author: Manish Ranjan Kumar | Rating:  |
| |  This article demonstrates two easy ways to use separate display and value for listbox control and combobox control. These controls take type object entities for items. Here it is demonstrated how to manipulate this to get the desired result.... |
| | Total Hits: 0 | Today: 0 | Author: Jan Wiggers | Rating:  |
| |  This is a descendant from DataGridColumnStyle and is used to have a ComboBox in a DataGrid column. It is based on an article by Sudhakar Jalli but I found the code not working. I repaired the code and cleaned it up a little.
The DataGridComboBoxColumn class makes it possible to have a ComboBox instead of the default text or checkbox. It took me quite a while to figure it out (even with the help of the article by Sudhakar Jalli). Using it is straightforward.... |
| | Total Hits: 0 | Today: 0 | Author: Martin Lottering | Rating:  |
| |  I needed a way to minimise the space required by a Filter control, yet maximise the filter capabilities provided to the user. One way to accomplish this was to replace a Grouped Box of CheckBox controls with a CheckBoxComboBox control. There are several CheckBoxComboBox controls on the web, but all of the ones I found and tested had something missing.... |
| | Total Hits: 0 | Today: 0 | Author: intensely_radioactive | Rating:  |
| |  I like the CCheckListBox class provided with MFC, however, it?s use isn?t obvious and the wizard assistance stops at the CListBox class. I?ll describe how to insert it easily in your project. (There may be easier ways to do it, but this is how I do it and it works).... |
| | Total Hits: 8 | Today: 0 | Author: mbanavige | Rating:  |
| |  The ListBox control is used to create a list control that allows single or multiple item selection. Use the Rows property to specify the height of the control. By default, the ListBox only allows a single selection to be made at a time. To enable the selection of multiple items, set the SelectionMode property to "Multiple".... |
| | Total Hits: 3 | Today: 0 | Author: Mahesh Chand | Rating:  |
| |  The GetValues method of Enum returns an array of objects. We can use this method to convert an enum to an array and bind to a ComboBox in WPF using ItemsSource property.
The following code snippet binds InkCanvasEditingMode enum available in WPF to a ComboBox.... |
| | Total Hits: 1 | Today: 0 | Author: Suprotim Agarwal, | Rating:  |
| |  This article was written simply out of curiosity. I was doing a similar operation using web technologies and just wanted to try out how it works with Windows Forms. I have recorded the steps in this short article, where we will explore how to drag and drop images into a PictureBox.... |
| | Total Hits: 2 | Today: 0 | Author: Kirtan Patel | Rating:  |
| |  When we make an application like programming editor for language it provides syntax highlighting that makes the user comfortable to work with it as everybody likes colored text that can be easy to read and distinguish between normal variable names and language keywords.... |
| | Total Hits: 13 | Today: 0 | Author: DXNuk | Rating:  |
| |  This control replicates the Office Font drop down box, with the feature of having your top five recently selected fonts.... |
| | Total Hits: 18 | Today: 0 | Author: Mostafa Kaisoun | Rating:  |
| |  I had some trials to make Editing the Grid control to be easy, now this is my new trial to create ActiveX control. I give the name (MKGrid) to my new ActiveX. With my ActiveX control You can: * Bind to database file. * Add, Edit and delete records. * Use Combo box, Date picker and Check box at any column. * Add row, delete row, insert row to unbound grid. * Hide column, lock column, resize column and sort column. * Save unbound grid after edit it as *.md... |
| | Total Hits: 11 | Today: 0 | Author: Microsoft Corporation | Rating:  |
| |  Accessing specific items in a Windows Forms combo box, list box, or checked list box is an essential task. It enables you to programmatically determine what is in a list, at any given position.... |
| | Total Hits: 27 | Today: 0 | Author: Execusoft | Rating:  |
| |  Another way of manipulating your combobox at runtime. I designed this as an alternate way of manipulating the combobox control for adding data, selecting the default value, and reading the value the user selected at runtime. This solution also provides a lot of functionality as you can store a couple of columns of data in your combobox item object at runtime.... |
| | Total Hits: 43 | Today: 0 | Author: XanderXP | Rating:  |
| |  This is one of several custom controls I have designed for a small utility I am currently developing. It offers a small, compact alternative to using full fledged TODO/TASK list organizers.... |
| | Total Hits: 92 | Today: 0 | Author: zaphnath | Rating:  |
| |  This article allows you to create your own fully customized list controls for display in a combobox drop down style while at the same time staying with as much intrinsic/standard control functionality as is possible. The drop window behaviour supports multiple select operations without closing the drop window, and does not use a single API call. The base combobox implementation uses the ToolStripDropDown component to replace the built in drop window functionality of the base combobox along with ... |
| | Total Hits: 32 | Today: 0 | Author: Zot Williams | Rating:  |
| |  CheckBoxPanel is a simple user control that groups a number of related controls. A 'Master' checkbox control is used to automatically enable/disable the group of controls. If the user clicks on any disabled control, the checkbox becomes checked and all the controls are enabled, improving the Form's workflow and significantly improving one aspect of your application's User Experience.... |
| | Total Hits: 122 | Today: 0 | Author: Shine Kumar | Rating:  |
| |  I would like to thank the authors of some old articles posted in CodeProject!! I have just consolidated information from them and created a reusable class, CListCtrlEx. I hope you will enjoy using it.... |
|
|
|
|
|
|
|
|
|
|
|
|
|