Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 789309
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T21:30:15+00:00 2026-05-14T21:30:15+00:00

When I resize a column, it does not redraw the data with the updated

  • 0

When I resize a column, it does not redraw the data with the updated alignment. I’ve tried Invalidating, Refreshing, and a few other things. Nothing has worked. Does anyone know a workaround? I have not tried this in mono for Windows.

To see what I mean, drop this control on a form, and run it in mono for Linux:

using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using System.Drawing;

class MyListView : ListView
{
  private readonly List<ListViewItem> items_ = new List<ListViewItem>();
  public MyListView()
  {
    VirtualMode = true;
    Columns.Add("Col 1");
    Columns.Add("Col 2");
    Columns.Add("Col 3");
    Add(new ListViewItem(new[] { "a", "b", "c" }));
    Add(new ListViewItem(new[] { "a", "b", "c" }));
    Add(new ListViewItem(new[] { "a", "b", "c" }));
    Add(new ListViewItem(new[] { "a", "b", "c" }));
    Add(new ListViewItem(new[] { "a", "b", "c" }));
  }
  protected override void OnRetrieveVirtualItem(RetrieveVirtualItemEventArgs e)
  {
    e.Item = items_[e.ItemIndex];
    base.OnRetrieveVirtualItem(e);
  }
  public void Add(ListViewItem item)
  {
    items_.Add(item);
    VirtualListSize = items_.Count;
  }
  protected override void OnDrawColumnHeader(DrawListViewColumnHeaderEventArgs e)
  {
    e.DrawText();
    base.OnDrawColumnHeader(e);
  }
  protected override void OnDrawSubItem(DrawListViewSubItemEventArgs e)
  {
    var text = ((ListViewItem.ListViewSubItem)e.SubItem).Text;
    using (var brush = new SolidBrush(e.SubItem.ForeColor))
    {
      e.Graphics.DrawString(text, Font, brush, e.Bounds);
    }
    base.OnDrawSubItem(e);
  }
  protected override void OnColumnWidthChanged(ColumnWidthChangedEventArgs e)
  {
    base.OnColumnWidthChanged(e);
    Invalidate(true); // Nope, that didn't work
    Refresh(); // Nope, that didn't work
  }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T21:30:15+00:00Added an answer on May 14, 2026 at 9:30 pm

    I figured it out. While my method of storing and reusing the ListViewItem instances works fine in Windows, mono prefers that I recreate them in the body of OnRetrieveVirtualItem.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In the following example, the leftmost column's width does not increase to accommodate the
I tried grid.getColumns[index].width = <>. But, that doesn't resize the column.
When I resize the column in Chrome, the screen freezes for 20 ~ 30
How can I have a single column resize with the form so that the
I'm diving into PyQt, and I've come across a little annoyance. SLOT('insertColumn()') does nothing
When I orient column headers at 45º I have to manually resize each column
When i'm trying to resize datagridview columns the resize cursor appears only when i
I'm writing a method that will resize the columns in a datagridview so that
How can I make a CListCtrl to resize the width of its columns automatically?
function resize($originalImage){ list($width, $height) = getimagesize($originalImage); $newName=basename($originalImage); $imageResized = imagecreatetruecolor(128, 128); $imageTmp = imagecreatefromjpeg

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.