Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
8k views

Looking for a WPF ComboBox with checkboxes

My google skills fail me. Anyone heard of a control like that for WPF. I am trying to make it look like this (winforms screenshot).
5
votes
1answer
4k views

For each <item> in CheckedListBox. <item> returns as Object and not as Control

I have a CheckedListBox previously populated. I want to loop with a "for each / next" through all items in the CheckedListBox and do a lot of "stuff" with each iteration element of the checkedlistbox. ...
4
votes
2answers
435 views

WPF, ListBox's ItemTemplate has CheckBox, but CheckBox does not seem to be the item

I just wanted the CheckListBox I used to use with Windows Forms. <ListBox> <ListBox.ItemTemplate> <DataTemplate> <CheckBox ...
4
votes
1answer
1k views

Odd behavior when toggling CheckedListBox item's checked state via MouseClick when clicking on the same selection

The WinForms CheckedListBox control has 2 default behaviors when clicking with a mouse: In order to check/uncheck an item you're required to click an item twice. The first click selects the item, ...
4
votes
4answers
2k views

CheckedListBox Control - Only checking the checkbox when the actual checkbox is clicked

I'm using a CheckedListBox control in a small application I'm working on. It's a nice control, but one thing bothers me; I can't set a property so that it only checks the item when I actually check ...
4
votes
2answers
498 views

Looking for a CheckedListBox control with icons support

Is there a CheckedListBox control with icons support for Windows Forms? Thanks.
3
votes
4answers
615 views

How do I color CheckedListBox items in VB.NET?

I am making a personal application in VB.NET that uses a CheckedListBox to store items. I have three buttons on my form, with which I would like to change the selected item's color with (to green, ...
3
votes
5answers
4k views

how to get value of checked item from checkedlistbox

I have used a CheckedListBox over my WinForm in C#. I have bounded this control as shown below - chlCompanies.DataSource = dsCompanies.Tables[0]; chlCompanies.DisplayMember = "CompanyName"; ...
3
votes
3answers
2k views

VB.NET CheckedListBox Tag?

Is there a Tag for an Item in the CheckedListBox? Or something similar? I would like to be able to store and ID associated with the item that I'm displaying.
3
votes
3answers
4k views

Casting an Item Collection from a listbox to a generic list

I want to find a better way of populating a generic list from a checkedlistbox in c#. I can do the following easily enough: List<string> selectedFields = new List<string>(); foreach ...
3
votes
3answers
822 views

uncheckable items in CheckedListBox?

In .NET framework, is it possible to set some of the items in the CheckedListBox as "uncheckable" ? I don't want to allow user to check the same items again and add them to a another existing list. ...
2
votes
1answer
80 views

SetItemCheckState breaks foreach! Help?

I'm new here and have a question about C#'s CheckedListBox. I built the CheckedListBox with data from a SQLite Database file. I want the user to check or uncheck items and in doing so it updates in ...
2
votes
2answers
145 views

Clear checked items from a listbox without firing itemcheck event

I got a checkedlist box in form2 (clbForm2) where i'm explicity mapping it to an item check event. Now i need to uncheck all the checked items of the control in Form1, from within form2. On unchecking ...
2
votes
2answers
222 views

Populating and deleting items from a database table by looping through checkedlistbox

What I am trying to do is populate a second checkedlistbox based on the selected items in the first checkedlistbox, and remove the items from the database when the parent is unchecked in the first ...
2
votes
3answers
216 views

How do I edit the name of an item in a CheckedListBox?

I have a CheckedListBox that has X number of items. These items are placed there at runtime. These items are supposed to represent reports that can be displayed in the DataGridView. What I need to ...
2
votes
4answers
1k views

Windows C# CheckedListBox Checked Item Event Handling

I'm currently developing a Window app that uses CheckedListBoxes for certain aspects of the program. A problem I've encountered is that I have been trying to find which event is triggered when an item ...
2
votes
2answers
136 views

how to do code event which will generate at run time in .net winforms?

I am getting checkedListBox values from database. Based on my checkbox selection it will perform some operation.where i have to write the code for checked items.
2
votes
2answers
2k views

How change the color of SelectedItem in CheckedListBox in WindowsForms?

I want to change the color of the items that are chedked in the CheckedListBox in C# WindowsForms. Can any one help me to solve this problem!
2
votes
2answers
540 views

C# Override CheckedListBox

i need to override the base CheckedListBox behaviour. it is possible to check and uncheck a CheckedListBox without any code attached to it. i need to disable this behaviour so that i can implement ...
2
votes
2answers
2k views

c# checked listbox MouseMove vs MouseHover event handler

I am using the following MouseMove event-handler to show the text-file content as a tooltip on CheckedListBox and there is a text-file object tagged to each checkedListBoxItem. private void ...
2
votes
1answer
1k views

Why is Databinding for a CheckedListBox “Hidden”?

The DataSource property on a CheckedListBox is hidden from Intellisense. Why? You can use the binding properties to make it work, but I'm worried that it's hidden for a reason and that I shouldn't ...
2
votes
2answers
7k views

Get index with value in Checked List Box

I am actually finding that chkContactType.Items is empty when I step through the code. I even added a Watch to chkContactType.Items.Count and it is never anything but 0. I am severly confused now as ...
2
votes
4answers
2k views

Tooltips for CheckedListBox items?

Is there a straighforward way to set additional text to appear in a tooltip when a user's mouse is held over an item in a CheckedListBox? What I would expect to be able to do in code is: ...
2
votes
5answers
2k views

How to detect if items are added to a ListBox (or CheckedListBox) control

This seems like a fundamentally simple question. I have a WinForms dialog box with a listbox. This control is not populated via data-binding but is filled with calls to listBox.Items.Add (obj); It ...
2
votes
3answers
216 views

Filtering list objects from another list

I have the following class in my C# .NET 3.5 win forms app: class Field { string objectName; string objectType; string fieldName; string fieldValue; } and a List fieldList that is a datasource ...
1
vote
3answers
91 views

How to adding checked item from checkedlistbox to combobox

I want to adding checked item from checkedlistbox to my combobox, but i have a little problem here. Combobox only show 1 item last checked. This is my sample code. If ...
1
vote
2answers
46 views

Set Indeterminate state with mouse in CheckedListBox

I need some assistance and I'm beating my head against the wall. I have an application that uses a tri-state CheckedListBox. I use the three states for specific purposes: Checked means tech performed ...
1
vote
2answers
27 views

How to created a display which combines CheckedListBox and detailed ListView?

I am trying to create something like this: This example creates view using a tabbing as spacing between entry. The flaw about it is that I might experience too long entries which I don't know how ...
1
vote
1answer
98 views

How come checkedlistbox does not have datasource ? how to bind to a list of values?

I am developing a Winform and I need a checkedlistbox. I have the values stored in an object which has a List property: public static class Fields { public static IList<string> FieldList { ...
1
vote
0answers
77 views

How to select and display rows with multiple columns in a checkedlistbox with SQLCE?

I've been following tutorials to select rows from a table and display it in a checkedListbox. This works fine with only one column. However, I cannot seem to figure out how to do this while selecting ...
1
vote
1answer
78 views

CheckedListBox with search function not checking correctly

I'm having strange issues with the check box control in C# .Net My code below shows all logic that is required - _itemsChecked is a private dictionary containing all of the _fixtures and whether they ...
1
vote
1answer
64 views

Prevent circular event chaining on UI controls when updated programmatically

I have a CheckedListBox which contains many items which can be checked or unchecked individually. Next to this are CheckBoxes representing supersets of the many items opposite. These are tri-state ...
1
vote
3answers
100 views

Getting Label Text of CheckBox from a CheckedListBox

I currently have a CheckedListBox with several boxes. I want to be able to test every Checkbox in the list to see if it's checked, and if it is, add it's text value (CheckBox.Text) to a List of ...
1
vote
2answers
206 views

CheckedListBox and Binding Object Properties to Items

I'm curious if there is a simple way to bind properties of a class to individual items of a CheckedListBox. There are several components out there (Telerik/DevExpress) that provide PropertyEditor ...
1
vote
1answer
429 views

UpdateSourceTrigger PropertyChanged on IsChecked Isn't Firing on ItemsSource of ListBox of Checkboxes

I have a listbox in which the item source contains a List(of T) that has a SelectedFlag boolean property. My viewmodel is set as the DataContext of my user control and everything is working as ...
1
vote
2answers
170 views

can i add to checkedListBox a name + date ? (c#)

ok , last try :) i have a small form that a user have to fill(name, date, etc), when he click "send" i want that his name together with the date (the user entring the date in DateTimePicker ...
1
vote
1answer
369 views

c# copy object (CheckedListBox) not reference

i work on windows form application in c#(ver 4) i want to copy a CheckedListBox , not as reference, i dont want that every change in the CheckedListBox effect my object. my code like public struct ...
1
vote
2answers
260 views

CheckedListBox iterate over items

So I'm iterating through all the checked items in the box like this: for (int i = 0; i < listFiles.CheckedItems.Count; i++) { } This works but how do I access the display name property of each ...
1
vote
2answers
231 views

Clone a DataBound Checked List Box

I have a DataBound CheckedListBox, I "check" few items on list box(source), then I need to clone it to new Checked List Box(target). It need to have all the data, with checked state. I have tried with ...
1
vote
1answer
242 views

attaching a contextmenustrip into checkboxlist dynamicly

i am trying to attach a built context menu strip into an object which i insert into my CheckBoxList what i am trying to do is to attach the contextMenuStrip into the new checkbox that is being created ...
1
vote
3answers
95 views

difficulty inserting a name to an inserted object of a checkedlistbox

I am abit new in C# and i am trying to insert an object to a CheckedListBox, so this inserted item will have a title inside the checked list (my object contains a string field inside it which I want ...
1
vote
5answers
591 views

How would I get the text of the newly checked item in a checked listbox with C#

The title pretty much says it all. I'm using the ItemCheckEventArgs and from which I can get an index value, but from this value I'm not sure how to look up what the text is of whatever was checked.
1
vote
2answers
1k views

Is there “DisplayMember” and “ValueMember” like Properties for CheckedListBox control? C# winforms

I have this DataTable with the following structure: ID | VALUE ---------------- 1 | Item 1 2 | Item 2 3 | Item 3 And I display the values from the DataTable into a CheckedListBox control by ...
1
vote
1answer
906 views

Creating a string-array of checked items in checked-list-box in C#

How can i create an array containing the checked items in a checkedlistbox using foreach loop(or any other way)? I can't know the number of items in the list. C#
1
vote
1answer
217 views

Problem with DataView Sort

I am trying to fetch data from DB and loading the DB with the values fetched. Later I am sorting the Data in the Table based on Name, then I want to bind it with a CheckedListBox However, when I am ...
1
vote
1answer
2k views

How to loop through checked list box you accessed through the windows controls?

I would like to loop through a checked list box and see which values are returned. That's no problem, I know I can do it with: if(myCheckedListBox.CheckedItems.Count != 0) { string s = ""; ...
1
vote
1answer
1k views

checkedlistbox vb.net multiExtended selection mode

First of all sorry because I don't know if this question is correct to put here. I have a little problem with a little VB.NET application that I am building. This is a winforms applications not WPF. ...
1
vote
0answers
156 views

LB_SETTABSTOPS does not appear to affect a CheckedListBox

I am trying to set tab stops in a CheckedListBox in my WinForms application, but no matter what I do, it does not seem to have any effect. I have the following in the code for my form: ...
1
vote
2answers
3k views

Iterate through CheckedListBox in WinForms?

If I have Checked list box in Win forms which I fill like this List<Tasks> tasks = db.GetAllTasks(); foreach (var t in tasks) tasksCheckedListBox.Items.Add(t.Name); How ...
1
vote
2answers
2k views

How do I CheckOnClick in a CheckedListbox but only when over the checkbox?

I have a CheckedListBox. I would like to be able to select items when I click on the text but check/uncheck them when I click on the checkbox area on the left. If I set CheckOnClick then the items ...

1 2 3