Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
2k views

TreeView Remove CheckBox by some Nodes

i want remove CheckBoxes where the Node.Type is 5 or 6. I use this code: private void TvOne_DrawNode(object sender, DrawTreeNodeEventArgs e) { int type = (e.Node as Node).typ; ...
3
votes
3answers
109 views

Delphi 6 TListBox OnMeasureItem() and OnDrawItem() never called for lbOwnerDrawVariable() list box

I have a Delphi 6 app with a TListBox control set to lbOwnerDrawVariable. At run-time I add a single string to the list box. I have event handlers for OnMeasureItem() and OnDrawItem() and I set ...
3
votes
1answer
107 views

How can I use a different text color for disabled menu items that are owner-drawn?

I have this code for colourize a MainMenu in Delphi. It works well with OnDrawItem events, but I need even something and I don’t know how can I make it. I would like that the font of a MainMenu item ...
3
votes
1answer
1k views

TreeView owner draw glitch when selecting

I'm trying to add a few more icons to elements of a standard System.Windows.Forms.TreeView control. My plan was to only change the label area of the treeview control, but it shows a strange ...
3
votes
2answers
1k views

C# ListBox DrawItem HotLight State in the OwnerDraw mode?

i'm using OwnerDrawFixed as a DrawMode for the custom ListBox control in my WinForms app. I want to repaint the background (or do some other action) of the ListBoxItem when the user hovers over the ...
2
votes
2answers
309 views

How to know if a TToolButton's MenuItem is dropped down?

In the context of an owner-draw toolbar used to host menu entries (TToolButtons with their MenuItem and Grouped properties set), I want to know if the corresponding menuitem is dropped. The problem is ...
2
votes
1answer
184 views

How to make sure draw operations are pixel aligned on Mac?

In recent iOS techtalk, I heard a suggestion about "make sure your draw operations are pixel aligned". Is this a valid suggestion for Mac/iOS drawing performance? Another question is how I can ...
2
votes
1answer
911 views

How to get hot node coords of TVirtualStringTree?

I'm trying to paint VirtualStringTree's cell differently when mouse is over it. How can I detect the coords of hot node? I know there's a HotNode property but it returns only Node that is under mouse ...
1
vote
1answer
116 views

How do I draw the selected list-box item in a different color?

Is is possible to change the item selection focus color and text color in a TListBox? When themes are not enabled in the project, or the list box style is set to owner-draw, the selection around the ...
1
vote
1answer
77 views

Can I force a Delphi 6 TImageList bitmap to draw its transparent pixels as a certain color?

I have a Delphi 6 application that owner-draws icons in a TListBox row along with some text. The TListBox's Style is set to lbOwnerDrawVariable. The problem I'm having is when an item is selected. ...
1
vote
2answers
288 views

c++ win32 ownerdraw checkbox

i have a native win32 c++ application which has a checkbox in it. I want to replace the checkbox and create ON/OFF toggle button with 2 states (just like the checkbox). I've added the BS_OWNERDRAW ...
1
vote
1answer
363 views

Delphi TPageControl DrawTab problem

I set the TPageControl Style to Flat Buttons (tsFlatButtons), and change the tab's button color using the OnDrawTab event. It works, but the button that is not-active has grey (btnFace color) border! ...
1
vote
2answers
637 views

MFC VC++ Custom Checkbox Image

How do I get a 3-state checkbox to use a different bitmap for the Indeterminate state? I want to change the image used by my 3-state checkboxes to use a different one; the controls are in ...
1
vote
1answer
88 views

OwnerDrawn ListBox blank when it loses focus

I subscribe to the ListBox.DrawItem event and it draws fine when it has focus but when I navigate away it draws nothing. private void lbHeader_DrawItem(object sender, DrawItemEventArgs e) { ...
1
vote
2answers
171 views

C# Winforms - How to draw position sign?

I writing my own textbox control in C# for Winforms. One thing i can't figure out: how to draw the text position sign in various sizes?
1
vote
1answer
356 views

Owner-Drawn ToolStripDropDownButton

I'm writing some custom behavior for a ToolStripDropDown control. I'd also like to modify the ToolStripDropDownButton itself to display a colored shape. I see that I can handle the Paint event and ...
1
vote
1answer
990 views

C# tabcontrol ownerdraw changes the tabcontrol's border style

I got a problem with tabcontrol. When I change the DrawMode to ownderdrawfixed, the borderstyle of the tabcontrol changes from "fixedsingle" to "3dfixed" but there's no such a property of tabcontrol ...
1
vote
2answers
2k views

Delphi, List Index out of bounds

I have a TListBox on a form, and items are added with listbox1.ItemIndex := listbox1.Items.AddObject('msg', TObject(grp)); grp is an integer, The listbox is set to lbOwnerDrawFixed In the ...
1
vote
1answer
986 views

.NET OwnerDraw ComboBox: Vista/7 themed DropDownList

I'm working on a custom ComboBox for a project, and have the basic painting working. One of the remaining things to do is make it look like the default ComboBox in Vista and 7, when the DropDownStyle ...
1
vote
1answer
721 views

How to change height of owner drawn listbox dynamically in windows mobile?

I am trying to create owner drawn listbox on windows mobile 6.1 I have specified LBS_OWNERDRAWFIXED style while creating listbox control. I am handling WM_MEASUREITEM and WM_DRAWITEM accordingly. I ...
1
vote
2answers
1k views

Transparency around non-rectangular (owner draw) ToolTip control?

I'm customizing the appearance of a WinForms ToolTip control by responding to the Draw event. I just want some of the ToolTip's corners to be rounded. I've got everything working such that the first ...
1
vote
2answers
479 views

OwnerDrawn control in MFC

I am creating a MFC application in which there is a skin library which handles the UI effect of rendering the controls (it gets called in oninitdialog). But, meanwhile, I have also the requirement of ...
0
votes
0answers
45 views

Complete custom drawn listbox

I'm trying to completely skin a list box. So far I've removed the background and painted a border by handling WM_CTLCOLORLISTBOX. The border is painted with a series of bitmaps (corners, and the top ...
0
votes
1answer
73 views

Owner drawing control system-background

Owner draw implies that I have to code my own drawing methods. However, how can I tell the system to draw the "system" background of my ListView item, without the text? I would like to manually draw ...
0
votes
0answers
97 views

Using TextRenderer.DrawText on a Ownerdrawn subitem?

With a Owner-Draw ListView, I would like to draw the subitem text. I tried with e.Graphics.DrawString, but the rendering hasn't the same aspect as system drawing. I also tried with e.DrawText, but ...
0
votes
1answer
199 views

Handling WM_PAINT in a Subclassed CStatic Control

I created a custom control whose class has CStatic as base class. Currently I handle the drawing using WM_PAINT event. But there is a strange behavior. When I re-enable the window after disabling it ...
0
votes
2answers
198 views

How to draw a button using winAPI

I have successfully created an owner drawn button. But how do I now draw/color the darn thing, to make it look like a Button using the Windows API? Currently, it just looks like a colored label? ...
0
votes
2answers
436 views

OwnerDraw DateTime Picker

I'd like to use a MonthPicker instead of a DateTimePicker, that will have exactly the same implementation as the DateTimePicker except for the dropdown panel that would only show months and year ...
0
votes
0answers
462 views

Toolbar NM_CUSTOMDRAW custom draw on Vista/Windows 7 with Aero / Compositing enabled

I am drawing my toolbar buttons using NM_CUSTOMDRAW. This works well on WinXP but on Vista/Win7 with Aero compositing enabled, the toolbar button is blended in the wrong way. How can I prevent the ...
0
votes
1answer
428 views

Why the DrawItem method of my owner draw listbox can't be called

I try to write a owner draw listbox with WTL. My code looks like this template class ATL_NO_VTABLE CMyListBoxImpl : public CWindowImpl, public COwnerDraw { ... BEGIN_MSG_MAP(CMyListBoxImpl) ...
0
votes
1answer
215 views

How do I draw my own submenu arrow in owner draw menus (and prevent windows from painting its arrow on top of mine)

Windows seems to draw the submenu arrow after I have done my painting in WM_DRAWITEM, how can I stop windows from drawing the arrow?
0
votes
2answers
709 views

CStatic Custom Control

I am trying to create a custom CStatic control in vc++ and have a few problems. I originally was just using a CStatic control with the SS_BLACKRECT style. This was good for the situation until I ...
-2
votes
1answer
145 views

Making a transparent TListBox in Delphi

A transparent TListBox: type TListBox = class(StdCtrls.TListBox) private { Private declarations } protected { Protected declarations } procedure CreateParams(var Params: ...