Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
5answers
2k views

Win32 List-View Control SubItem padding for custom-drawn SubItems?

When using custom-draw (NM_CUSTOMDRAW) to draw the entire contents of a ListView SubItem (in Report/Details view), it would be nice to be able to apply the same left and right padding in my custom ...
3
votes
4answers
570 views

Draw over controls in Dephi form

I have a supposedly very simple question: How can I draw something on the from canvas, but I want this to be also drawn over controls on the form ? If I try the following: procedure ...
2
votes
2answers
57 views

Indent tab in TabControl

I'd better illustrate what I want to achieve. Original: ...
1
vote
1answer
189 views

ListView Custom Draw - Multi-colored text inside individual cell?

As far as I know you can use Custom Draw in a list-view to paint individual cells the way you want using CDDS_SUBITEM. However, I would like to have multi-colored text within a cell. That is, I would ...
1
vote
0answers
741 views

Custom drawing Treeview / Treenode

In a normal WinForms TreeView, when you select a TreeNode, it highlights this in a blue, rectangle around the text of the TreeNode. I need a custom drawn treeview, that when selected, the highlighted ...
0
votes
1answer
10 views

How to enable implicit animation in UIView when doing custom drawing?

I perform custom drawing in my UIView subclass using: - (void)drawRect:(CGRect)rect; How can I enable implicit animation when the drawing changes?
0
votes
1answer
154 views

Custom draw of DatagridViewComboBoxColumn

I'm using a DataGridView with a DataGridViewComboBoxColumn and I need to add icons to the left of combobox items. I'm currently using EditingControlShowing event along with ComboBox.DrawItem event, ...
0
votes
1answer
187 views

NSOutlineView badges in NSSplitView

I have an NSOutlineView which I draw badge numbers to the right side of cells using drawAtPoint:, NSAttributedString, and of course NSBezierPath. My problem exists when resizing of the outline view ...
0
votes
1answer
361 views

Custom draw CTreeCtrl: how to add font strike through?

I have implemented custom draw for an CTreeCtrl in my MFC Smart Device program. I have successfully changed the color of specific nodes of the CTreeCtrl. I am now trying to understand how to get the ...
0
votes
3answers
2k views

Win32: How to custom draw an Edit control?

i need to implement the functionality of EM_SETCUEBANNER, where a text hint appears inside an Edit control: The catch is that i cannot use version 6 of the Common Controls, which is what is ...