The ownerdrawn tag has no wiki summary.
0
votes
0answers
52 views
ListView OwnerDraw artifacting when using LargeIcon view
I have a ListView in a C# WinForms project with OwnerDraw set to true. I'm populating both LargeIcon and List views, as well as the LargeImageList and SmallImageList properties (both of which have ...
0
votes
0answers
66 views
Is it possible to remove the dotted rectangle and visual style on the selected tab in TabControl?
I am having a problem on my extendedtabcontol class, I cannot get rid of the dotted box or the visual style box on the selected tab. I have my own DrawItem (see below), I have overridden several ...
0
votes
3answers
111 views
Label UserPaint drawn text doesn't fit
I have a custom Label class, drawn text doesn't fits. What am I doing wrong here?
class MyLabel: Label
{
public MyLabel()
{
SetStyle(ControlStyles.SupportsTransparentBackColor | ...
0
votes
1answer
124 views
How to correct Winforms Treeview horizontal scrollbars with owner drawn nodes?
I am creating a custom winforms Treeview that is completely owner drawn. When a bolded text node is drawn and reaches beyond the width of the Treeview, the text is cutoff because the horizontal ...
6
votes
2answers
192 views
Changing CreateParams dynamically?
I have a custom button component that I have derived from TCustomButton.
To make it ownerdrawn I have overrided the CreateParams like so:
procedure TMyButton.CreateParams(var Params: TCreateParams);
...
2
votes
1answer
238 views
Owner drawn listbox not drawing previously selected item
I want to increase the height of the items in a listbox - to pad them internally, basically. Other than that, I don't want to change the default listbox behavior. I have followed the MSDN example for ...
0
votes
3answers
143 views
The class CheckComboBox can be designed, but is not the first class in the file.
i am developing a winform application which has an owner drawn combobox with check boxes.
but in visual studio i am facing following erroe
" The class CheckComboBox can be designed, but is not the ...
2
votes
1answer
531 views
.NET Form Treeview Node Width & Custom Drawn Text (Cannot set node bounds)
I have a treeview in a windows form. I recently added code to custom draw the text so that I can fiddle with placement, bold text, etc. Everything is great except it appears that when I make my ...
0
votes
1answer
149 views
Redrawing of owner-drawn winforms combobox items
I need to show items in a combobox with a different background color. I also want to change what that color is depending on if the item is selected (or the mouse is on top of it), just the same way it ...
1
vote
2answers
241 views
TopenDialog/TSaveDialog with owner-drawn items
I want to implement the traditional open and save dialogs (and the underlying items being dealt with are files), but I want to have control over what is displayed in place of the filename, and include ...
1
vote
0answers
113 views
Set position of edit box in the TreeView
In WinForms, I would like to know if it is possible to programmatically set the position of the edit box in the TreeView, and if yes, how ?
Let me give more details.
We have an owner drawn TreeView ...
0
votes
2answers
2k views
colour a stringgrid column depending on columnname text
I am doing this :
procedure TForm1.BitBtn1Click(Sender: TObject);
var dtStart: TDateTime;
I: Integer;
begin
dtStart := DateTimePicker1.Date;
for I := 0 to 7 do
AdvStringGrid1.Cells[I+1, 0] ...
0
votes
2answers
455 views
ObjectListView doesn't word-wrap
I am using ObjectListView instead of the standard ListView is because I wanted to word-wrap the columns.
I read in several places that the only thing I need to to in order to enable word-wrapping is ...
4
votes
1answer
618 views
Why is there a separate message for WM_ERASEBKGND
I've never quite understood why erasing the background has a separate windows message. I looks a bit redundant to me. When I've created owner-drawn buttons, I've always ended up erasing the background ...
0
votes
0answers
173 views
How to set the background for the unfilled area of an owner-drawn listbox?
When handling DrawItem for my CListBox-derived class, I set the background to a custom color. This works well when the listbox is completely filled with lines, but when it only contains 1-2 lines and ...
0
votes
1answer
478 views
MFC custom OnPaint not being called reliably
I inherited an MFC app, and it has a window that has several owner-draw widgets that respond to OnPaint and do various drawing.
I noticed that in order to force the controls to redraw in response to ...
1
vote
1answer
403 views
How to set height for owner draw variable CListBox (MFC)
I have a variable-height owner draw ListBox control. When I call AddString, a MeasureItem message is sent asking me to tell Windows the size of the item. The problem is, the code hasn't had a chance ...
0
votes
1answer
1k views
Listview Problems with ownerdraw mode text rendering
I'm trying to implement an owner drawn ListView because the base control eats the tab character which I need to align values within a column.
Using an example from MSDN as a base I was able get ...
4
votes
1answer
263 views
How to draw UI elements with Visual Styles turned off?
I have a owner drawn control where I need to draw the expand box ("plus/minus") of a treeview. With visual styles turned on it is easy, just create a renderer for the appropriate VisualStyleElement:
...
0
votes
3answers
2k views
win32 c++ owner draw button with transparent image
i've implemented a owner draw button into my win32 app (no MFC). The button is a normal 20x20 bitmap (round icon with transparency). The problem is that the button is positioned on a solid background ...
-1
votes
1answer
684 views
Draw controls in tab control tab header area in Winforms
I am trying to add some controls to the left of the tab header area for my tab control but not affect the tab page area (like internet explorer). I think I would have to owner draw the control, but ...
0
votes
2answers
1k views
WIN32: How Do I Tell an Owner Drawn Static Control to Refresh Itself?
I have a WIN32 owner-drawn static control that draws a progress bar using two source images (filled and unfilled). Works great on the initial draw:
case WM_DRAWITEM:
{
DRAWITEMSTRUCT* ...
4
votes
1answer
806 views
How to selectively invalidate Owner Drawn TListBox's canvas?
I have an owner drawn TListBox (lbVirtualOwnerDraw), whose content gets updated dynamically (there can be as high as 10 updates in a second). There can be up to 300 items in the list box at a time. ...
0
votes
1answer
287 views
Removing the border from an owner-drawn listbox
I've made an owner-drawn listbox by deriving CListBox, but I don't want it to have a border. Instead the border will be painted in the background of the parent dialog, so my listbox will look like it ...
0
votes
1answer
411 views
listbox ownerdrawn items vb2008
I need to draw each item in a listbox based on the text the items that is about to be added or the text it contains. Then I need to place an icon at the beginning of the listbox, with two other colors ...
1
vote
1answer
1k views
How to change the font-size of a popup-menue (MFC, VC6)
I wonder if there is a quick and easy way to change the height of a PopupMenu (i.e. so that each line in the menu has an increased vertical size), and also change the font size to use a bigger font.
...
1
vote
1answer
808 views
Best Way to Override ComboBox.Items
I've created an owner-draw user control that inherits from ComboBox.
The control stores specialized items, but the Items collection still accepts and returns items of type Object. Any tips on the ...
2
votes
1answer
209 views
How to provide animation in an owner-drawn menu item?
My application is in C# 3.5, Winforms, but this will most likely require P/Invoke anyway, so it's not that strictly tied to .NET.
I have created owner-drawn menu items via ContextMenu and MenuItem ...
1
vote
1answer
479 views
C# p/invoke, Reading data from an Owner Drawn List Box
I have an Owner Drawn List Box in an external application (America Online) that I need to get data out of for building a component to assist people with its usability. (the utility will be making ...
2
votes
3answers
1k views
Change size of ToolStripMenuItem
I'm custom drawing a menu item in a MenuStrip. The problem I'm having is that the menu item insists on sizing itself based on the text, which is not what I want (there is no text). I can set AutoSize ...
0
votes
1answer
313 views
Making a winform form owner drawable
I have a form that I am attempting to override the WndProc subroutine on. I am using GetDCEx to get a DC handle to my form. According to Microsoft's documentation on using GetDCEx, my form must have ...
0
votes
1answer
86 views
How do I make an custom drawn resizable container?
I have a WinForms gui application which has a number of areas to it which I'd like to custom-draw some graphics. These areas would contain controls and be resizeable. I'm currently thinking of ...
1
vote
1answer
2k 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 ...
0
votes
1answer
851 views
C# ColumnHeader's free space background color
Hey,
I'm trying to draw custom ColumnHeaders in a FastObjectListView control.
So far the code works, but the ColumnHeaders free space ( so the part that does not contain any column headers atm ) ...
0
votes
2answers
1k views
Windows Forms ListView in Details Mode - How to Change Row Height in Owner Draw?
I've got a Windows Forms ListView control in details mode. There are multiple columns at play. I'm trying to use owner draw to place a particularly wide column "below" the others.
So, instead of ...
3
votes
1answer
3k views
Trouble with TreeView.DrawNode - OwnerDrawText
I have an app that is connected to a remote server and polling data when needed. It has a TreeView where the Nodes represent the objects that are available and the color of the text indicate whether ...
0
votes
2answers
1k views
Vertical Text on Right-Aligned TabControl
Trying to have the text on each tab of the tabcontrol to be displayed vertically. Being that I've never forayed into controls and what not, i'm sorta stuck. Found some code to get the text to display ...
0
votes
1answer
499 views
Testing whether item is visible in virtual ListView
all! Here's my predicament:
I'm using a ListView control in virtual and OwnerDraw mode to display a number of items.
Is there a way to test whether a certain item is visible (within the client area ...
2
votes
3answers
2k 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 ...
2
votes
2answers
2k 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
1answer
1k views
c# MeasureItemEvent handler: e.ItemHeight not changing
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, only the ...
0
votes
1answer
807 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
1k 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 ...
1
vote
2answers
709 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 ...
0
votes
1answer
745 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
761 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 ...
7
votes
1answer
7k 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
4answers
2k 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
979 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
1answer
1k 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 ...


