0
votes
2answers
116 views
Custom/Owner draw control in PyQt?
I am learning PyQt and wonder if one can create custom/owner draw control like one show in the figure below:
The search box has magnifier icon on its right border. Is this kind of thing …
1
vote
3answers
126 views
Why is my owner-drawn combobox shown empty?
I'm subclassing a WTL combobox and I'm owner-drawing the items of the combobox. The control has the attributes CBS_DROPDOWNLIST | CBS_HASSTRINGS | CBS_OWNERDRAWVARIABLE and I'm using the mix-in class …
0
votes
1answer
138 views
What’s the correct way to use controls in Owner drawn list box
I am experimenting with owner drawn list box. I am adding a text box to a specific item within list box. However, when I start scrolling, the text box does not display in the right location. What is …
0
votes
1answer
69 views
How to make an ownerdraw Trackbar in WinForms
I'm trying to make a trackbar with a custom graphic for the slider thumb. I have started out with the following code:
namespace testapp
{
partial class MyTrackBar : System.Windows.Forms.TrackBar
…
0
votes
3answers
384 views
Owner Draw ListView “smearing” when scrolling
I have an ownerdrawn ListView that "smears" when I scroll. It only affects the last displayed item as it moves into the visible are of the list...
It looks like:
Blah
Blah
Blah
...have …
0
votes
1answer
114 views
c# MeasureItemEvent handler: e.ItemHeight not changing
Hi All-
Is it me or can I only set the itemheight - e.ItemHeight - once for a listbox?
Although I handle the MeasureItemEvent on my ownerdrawn listbox and set the e.ItemHeight to the right value, …
0
votes
1answer
59 views
What is an owner drawn listbox?
Please excuse my ignorance, but I have come across this term "owner drawn" listbox. Can someone experienced with this explain what exactly that is?
0
votes
1answer
161 views
listbox control ownerdraw question( adding a edit control to the listbox item )
I am using owner draw variable style for a listbox( winforms 2.0)
when a user selects an items I want to draw an edit control in that cell
Is that doable
not a drop down but an actual edit control …
0
votes
1answer
112 views
redraw combobox items when expanded
I have a .net 3.5 windows application with a bound combobox. I have overridden the DrawItem event to color the background of individual items based on certain conditions. I have asynchronous threads …
1
vote
1answer
988 views
C#: TreeView owner drawing with ownerdrawtext and the weird black highlighting when clicking on a node.
I set the DrawMode to OwnerDrawText and tacked on to the DrawNode event, added my code to draw the text the way I want and all works well save for some odd black selection highlighting when a node is …
0
votes
1answer
210 views
Custom Drawing of (multi-layered)Embedded TabControls Error
I have a winform app that has tabcontrols that are 3 layers deep. I am dynamically coloring the tabs with the below class. When it goes to color an embedded tabcontrol it pitches a fit.
A first …
0
votes
0answers
176 views
.Net OwnerDraw ComboBox keyboard shortcuts
I have a .Net ComboBox where I am drawing the items using DrawMode.OwnerDrawVariable or DrawMode.OwnerDrawFixed.
When I do this, the standard behavior where pressing the first letter of an item when …
0
votes
1answer
422 views
Character Alignment with an OwnerDraw ListView in C#
I'm trying to implement a .NET control that functions like the Firefox Awesome Bar. To that end, I'm trying to bold and underline searched for characters inside of search results displayed in a …
4
votes
5answers
438 views
How to create a non OwnerDraw Button in .NET?
Hi,
I'm creating a plugin to a software that skins the form I created. However, the button are not skin based on them and a standard gray button is shown. Asking on the software forum pointed me that …
1
vote
2answers
966 views
Winforms - How do I create a custom windows border and close/minimise buttons?
I would like to be able to create a black custom window (with border and controls) like that shipped as part of expression blend, Twirl, or Adobe Lightroom.
Is there a best practices way of creating …
