473,789 Members | 2,702 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Create OwnerDraw CheckBox

Hi.

Does anybody have a sample, how does I can make a checkBox ownerdrawn? I
need to change the color inside of the box.

Can anyone help me, how does I have to do this?

Thanks
Thomas
Nov 15 '05 #1
3 9018
I'm not I understand what exactly you want to do..but, you can change both
the foreground and background color of the standard
System.Windows. Forms.CheckBox usinng the ForeColor & BackColor Properties.

Thanks,
Mohamed
--------------------
From: "Thomas Kehl" <t.kehl (at) heeb.com>
Subject: Create OwnerDraw CheckBox
Date: Tue, 16 Dec 2003 18:56:54 +0100
Lines: 11
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <e5************ **@TK2MSFTNGP09 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.langua ges.csharp
NNTP-Posting-Host: 147.124.203.62. dial.bluewin.ch 62.203.124.147
Path: cpmsftngxa07.ph x.gbl!cpmsftngx a06.phx.gbl!TK2 MSFTNGP08.phx.g bl!TK2MSFTNGP09 .
phx.gblXref: cpmsftngxa07.ph x.gbl microsoft.publi c.dotnet.langua ges.csharp:2059 98
X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.csharp

Hi.

Does anybody have a sample, how does I can make a checkBox ownerdrawn? I
need to change the color inside of the box.

Can anyone help me, how does I have to do this?

Thanks
Thomas


Nov 15 '05 #2
Hi Mohamed,

thanks for your answer. I want to change the color inside of the box where
the hook is in it (this is always white), not of the textarea.

Can you help me?

Thanks, Thomas

"Mohamed Enein (MSFT)" <Mo***********@ online.microsof t.com> schrieb im
Newsbeitrag news:oL******** ********@cpmsft ngxa07.phx.gbl. ..
I'm not I understand what exactly you want to do..but, you can change both
the foreground and background color of the standard
System.Windows. Forms.CheckBox usinng the ForeColor & BackColor Properties.

Thanks,
Mohamed
--------------------
From: "Thomas Kehl" <t.kehl (at) heeb.com>
Subject: Create OwnerDraw CheckBox
Date: Tue, 16 Dec 2003 18:56:54 +0100
Lines: 11
X-Priority: 3
X-MSMail-Priority: Normal
X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
Message-ID: <e5************ **@TK2MSFTNGP09 .phx.gbl>
Newsgroups: microsoft.publi c.dotnet.langua ges.csharp
NNTP-Posting-Host: 147.124.203.62. dial.bluewin.ch 62.203.124.147
Path:

cpmsftngxa07.ph x.gbl!cpmsftngx a06.phx.gbl!TK2 MSFTNGP08.phx.g bl!TK2MSFTNGP09 . phx.gbl
Xref: cpmsftngxa07.ph x.gbl microsoft.publi c.dotnet.langua ges.csharp:2059 98X-Tomcat-NG: microsoft.publi c.dotnet.langua ges.csharp

Hi.

Does anybody have a sample, how does I can make a checkBox ownerdrawn? I
need to change the color inside of the box.

Can anyone help me, how does I have to do this?

Thanks
Thomas

Nov 15 '05 #3
Thomas,

I going to assume you ment a WinForm CheckBox.
With that said here is how I would do it.

Add an ImageList Control to the Form. To hold the 16x16 images used as
the check box area of the control.
Image 1: Image of an Unchecked box
Image 2: Image of a box with a check in it
Image 3: Image of a Indeterminate Box with a check in it (Only if 3
state)

Add a Paint Event to the check box the the following code.
private void CheckBox1_Paint (object sender, PaintEventArgs e)
{
if( CheckBox1.Check ed )
e.Graphics.Draw ImageUnscaled( ImageList1.Imag es[1],
0, // X start point
0 ); // Y start point
else
e.Graphics.Draw ImageUnscaled( ImageList1.Imag es[0],
0, // X start point
0 ); // Y start point
}

Note: Forms will be slowed during load the more check boxes you have
to draw.

Hopes this helps.

Glen Jones MCSD
From: "Thomas Kehl" <t.kehl (at) heeb.com>
Subject: Create OwnerDraw CheckBox
Date: Tue, 16 Dec 2003 18:56:54 +0100
Lines: 11

Hi.

Does anybody have a sample, how does I can make a checkBox ownerdrawn? Ineed to change the color inside of the box.

Can anyone help me, how does I have to do this?

Thanks
Thomas

Nov 15 '05 #4

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

Similar topics

2
2970
by: anand | last post by:
Hi All, Are ownerdraw buttons supported in C# ? I have an active X control which I would like to use in CSharp. Buttons have a style BS_OWNERDRAW, and to do custom drawing you have to handle WM_DRAWITEM message. It works greate in all languages except CSharp and VB.net.
0
1102
by: Apollo440 | last post by:
If MenuItem.OwnerDraw Property is true,.NET framework does not recognize the overlapped accelerator keys. Is there a workaround? eg) +------+ |&Test | <- |&Tea | <- MenuItems has overlapped accelerator keys "T" & OwnerDraw = true
2
2850
by: Stuart Norris | last post by:
Dear Group, I am new to c# and windows form designer - coming from a Motif background. I am attempting to develop an application for a touch screen and I need to have a menu system with a larger font to allow ease of selection. I have used OwnerDraw menus implementing the DrawItemEventHandler and
2
1738
by: jm | last post by:
There are properties for OwnerDraw on ContextMenu items. I know it can be done with regular menus. I cannot find anyone doing it with the systray icon contextmenu (notifyicon.) Is it possible to change fonts, colors, etc. of a context menu item if it is a system tray contextmenu? Thank you.
0
991
by: Michel | last post by:
I come back with a new question regarding my OwnerDraw menu. That is a classical ownerDraw menu to add icon and some other color properties. My feature is to color all the menu bar with the background color of the items. So I feel the left side of the menu bar with a FillRectangle. I gather the width of the form for the Rectangle definition Everything works well.
0
1080
by: Peter Proost | last post by:
Hi group, I was wondering if anyone has ever done this before, I've got a working ownerdrawn menu the only thing I can't get to work is to ownerdraw the items the get automaticaly created in a mdilist. I thought if I'd handle the click event of the menuItem with the mdilist property and then iterate true it's collection of MenuItems and dynamicaly add the handlers used for my drawitem and measueritem it "could" work but it doesn't...
2
1272
by: Peter Proost | last post by:
Hi group, I've got this ownerdraw menu module which I got from a site and modified to my personal needs, but the only problem I'm having is with the lines in a menu, when you type - as text, it normaly becomes a full line and the height of the menuitem is reduced but when you set a menu to ownerdraw and use my draw and measure item handlers this doesn't work anymore, has anyone worked out a good sloution for this before? Greetz Peter
0
1048
by: genojoe | last post by:
This code is derived from: ms-help://MS.VSCC.2003/MS.MSDNQTR.2005JUL.1033/cpref/html/frlrfSystemWindowsFormsMenuItemClassOwnerDrawTopic.htm The sample works as presented but does not contain a click event. Here is my abridged version of the code. In this code, if I use MenuItem2.OwnerDraw = False, it behaves as expected: no ownerdraw and when clicked, I see the message. If MenuItem2.OwnerDraw = True, I see the colored text but when...
1
5093
by: tmda | last post by:
I'm using OwnerDraw for some customization in my ListView - adding color to item backgrounds. I'm using the ListView specifically for it's OwnerDraw capability. I originally was using the CheckedListBox control but it has no OwnerDraw. I have not found a way to draw the checkboxes while using OwnerDraw (the checkboxes appear correctly when not using OwnerDraw). How can this be done? It would be nice if there were something similar to...
0
9666
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9511
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10412
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9021
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7529
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5422
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5551
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4093
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2909
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.