473,396 Members | 2,113 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Checklistbox with images

Hi,

has anyone implemented a checkedlistbox with images as well as text, and if
so can I have some sample code please?!

Thanks, Stu
Nov 17 '05 #1
1 4215
public class CheckedImageListBox : CheckedListBox
{

protected override void OnDrawItem(DrawItemEventArgs e)
{
IDisplayGraphLinker oGraphLinker =
(IDisplayGraphLinker)this.Items[e.Index];

int nX = e.Bounds.X+2;
int nY = e.Bounds.Y+2;

//Grab the graphics object
Graphics g = e.Graphics;
Rectangle oCheckBoxRectangle = new Rectangle(nX, nY, 10, 10);

// Draw the box
g.DrawRectangle(new Pen(Color.Black, 2), oCheckBoxRectangle);

//if this item is checked, draw a tick
if(this.Items[e.Index]))//implement whether your item is checked here
{
g.DrawString(oGraphLinker.ToString(), Font, new SolidBrush(Color.Black),
e.Bounds.X+45,e.Bounds.Y+1);
g.FillRectangle(new
SolidBrush(System.Drawing.SystemColors.ActiveCapti on),
oCheckBoxRectangle.X+2, oCheckBoxRectangle.Y+2, 6, 6);
}
else
{
g.DrawString(oGraphLinker.ToString(), Font, new SolidBrush(Color.Gray),
e.Bounds.X+45,e.Bounds.Y+1);
g.FillRectangle(new SolidBrush(Color.White), oCheckBoxRectangle.X+2,
oCheckBoxRectangle.Y+2, 6, 6);
}

//now draw an icon
g.DrawImage(IMAGE, new Point(e.Bounds.X+20, e.Bounds.Y));
}
}
Nov 17 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Bernie Yaeger | last post by:
Is there any way to get a listbox or a checklistbox behave in an autocomplete manner, such that given 'two', 'three', 'water', 'them' would bring the selection to 'two' (not 'water') when I key in...
3
by: MikeY | last post by:
Hopefully someone can help me on this. I am using C#, making Windows forms. I have created a listView with checkbox's. I have enabled the checkboxes under the properties, and all the data,...
0
by: satankidneypie | last post by:
Hi, has anyone implemented a checkedlistbox with images as well as text, and if so can I have some sample code please?! Thanks, Stu
1
by: comic_rage | last post by:
Hi, I created a checkListBox to allow the user to select and place a check next to multiple items in the GUI. I would like to add a 2 column where the first column show the description of the...
2
by: Mike Kim | last post by:
hi all, i have a checklistbox populated with about 50 items from database. and on the same form, i added to button to do the following. if you click this button, i want to have all items in the...
0
by: Ville Mattila | last post by:
Dear readers, I've some problems with the data binding of the checklistbox control. I'm using it with user preferences that are stored in a XML File. Information from the file is fetched with...
1
by: obrienkev | last post by:
Hi, I want to mark the CheckListBox items as Checked based on a database query. So the CheckListBox items should be checked if each item matches fundsAffected field from the below query... ...
3
by: obrienkev | last post by:
Hi all, How do I mark an item in a checklistbox as checked based on a condition? e.g. if(x=1) { // SET a ChecklistBox Item as Checked }
3
by: khalidjan9 | last post by:
I have data in an arraylist and i want to add data to checklist box on runtime and i also want to display a textbox besides it so that i get the comments example : checklistbox "text" textbox...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.