我有一个包含TableLayoutPanel
的面板,其中包含一些ListViews
和Labels
。
我想要的是为每个列表视图调整大小以垂直放置所有内容(即每行都可见)。 TableLayoutPanel
应处理任何垂直滚动,但我无法确定如何根据行数让ListView
调整自身大小。
我是否需要处理OnResize
并手动调整大小,或者已经有办法处理这个问题?
答案 0 :(得分:0)
类似的问题建议使用ObjectList,但对我想要的东西看起来有点过分。所以相反,我根据列表中的项目进行了这个简单的重载(下面)调整大小。
我只是在Windows Vista上以详细模式测试了这个显示,但它很简单,似乎运行良好。
#pragma once
/// <summary>
/// A ListView based control which adds a method to resize itself to show all
/// items inside it.
/// </summary>
public ref class ResizingListView :
public System::Windows::Forms::ListView
{
public:
/// <summary>
/// Constructs a ResizingListView
/// </summary>
ResizingListView(void);
/// <summary>
/// Works out the height of the header and all the items within the control
/// and resizes itself so that all items are shown.
/// </summary>
void ResizeToItems(void)
{
// Work out the height of the header
int headerHeight = 0;
int itemsHeight = 0;
if( this->Items->Count == 0 )
{
// If no items exist, add one so we can use it to work out
this->Items->Add("");
headerHeight = GetHeaderSize();
this->Items->Clear();
itemsHeight = 0;
}
else
{
headerHeight = GetHeaderSize();
itemsHeight = this->Items->Count*this->Items[0]->Bounds.Height;
}
// Work out the overall height and resize to it
System::Drawing::Size sz = this->Size;
int borderSize = 0;
if( this->BorderStyle != System::Windows::Forms::BorderStyle::None )
{
borderSize = 2;
}
sz.Height = headerHeight+itemsHeight+borderSize;
this->Size = sz;
}
protected:
/// <summary>
/// Grabs the top of the first item in the list to work out how tall the
/// header is. Note: There _must_ at least one item in the list or an
/// exception will be thrown
/// </summary>
/// <returns>The height of the header</returns>
int GetHeaderSize(void)
{
return Items[0]->Bounds.Top;
}
};