- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Windos::Forms::GroupBox
其中包含 Windows::Forms::ListView
.当我添加项目时,我将项目添加到 ListView
我告诉它调整大小,但我如何为它的父级做同样的事情 GroupBox
?
[编辑] 这是我的自定义大小调整列表控件:
ResizingListView::ResizingListView(void)
{
}
void ResizingListView::ResizeVerticallyToItems(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 work out how big the header is
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;
}
int ResizingListView::GetHeaderSize(void)
{
return Items[0]->Bounds.Top;
}
void ResizingListView::OnResize(System::EventArgs^ e)
{
if( this->Scrollable == false )
{
ResizeVerticallyToItems();
}
}
ResizeVerticallyToItems()
它可以毫无问题地调整控件的大小。家长
GroupBox
虽然有一些填充,但当我的列表调整大小时会消失。所以我的想法是我需要问问家长
GroupBox
调整大小。
this->grpMyStatus->AutoSize = true;
this->grpMyStatus->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(64)),
static_cast<System::Int32>(static_cast<System::Byte>(64)), static_cast<System::Int32>(static_cast<System::Byte>(64)));
this->grpMyStatus->BackgroundImageLayout = System::Windows::Forms::ImageLayout::Stretch;
this->grpMyStatus->Controls->Add(this->lstMyStatus);
this->grpMyStatus->Dock = System::Windows::Forms::DockStyle::Top;
this->grpMyStatus->Font = (gcnew System::Drawing::Font(L"Microsoft Sans Serif", 9.75F, System::Drawing::FontStyle::Bold,
System::Drawing::GraphicsUnit::Point, static_cast<System::Byte>(0)));
this->grpMyStatus->ForeColor = System::Drawing::Color::SkyBlue;
this->grpMyStatus->Location = System::Drawing::Point(3, 166);
this->grpMyStatus->Name = L"grpMyStatus";
this->grpMyStatus->Padding = System::Windows::Forms::Padding(3, 3, 3, 20);
this->grpMyStatus->Size = System::Drawing::Size(270, 92);
this->grpMyStatus->TabIndex = 5;
this->grpMyStatus->TabStop = false;
this->grpMyStatus->Text = L"My Status";
this->lstMyStatus->BackColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(64)),
static_cast<System::Int32>(static_cast<System::Byte>(64)), static_cast<System::Int32>(static_cast<System::Byte>(64)));
this->lstMyStatus->BorderStyle = System::Windows::Forms::BorderStyle::None;
this->lstMyStatus->Columns->AddRange(gcnew cli::array< System::Windows::Forms::ColumnHeader^ >(1) {this->columnHeader6});
this->lstMyStatus->Dock = System::Windows::Forms::DockStyle::Top;
this->lstMyStatus->Font = (gcnew System::Drawing::Font(L"Verdana", 8.25F, System::Drawing::FontStyle::Bold, System::Drawing::GraphicsUnit::Point,
static_cast<System::Byte>(0)));
this->lstMyStatus->ForeColor = System::Drawing::Color::FromArgb(static_cast<System::Int32>(static_cast<System::Byte>(224)),
static_cast<System::Int32>(static_cast<System::Byte>(224)), static_cast<System::Int32>(static_cast<System::Byte>(224)));
this->lstMyStatus->HeaderStyle = System::Windows::Forms::ColumnHeaderStyle::None;
this->lstMyStatus->HideSelection = false;
this->lstMyStatus->Items->AddRange(gcnew cli::array< System::Windows::Forms::ListViewItem^ >(3) {listViewItem3,
listViewItem4, listViewItem21});
this->lstMyStatus->LabelWrap = false;
this->lstMyStatus->Location = System::Drawing::Point(3, 18);
this->lstMyStatus->Name = L"lstMyStatus";
this->lstMyStatus->RightToLeft = System::Windows::Forms::RightToLeft::Yes;
this->lstMyStatus->RightToLeftLayout = true;
this->lstMyStatus->Scrollable = false;
this->lstMyStatus->ShowGroups = false;
this->lstMyStatus->ShowItemToolTips = true;
this->lstMyStatus->Size = System::Drawing::Size(264, 54);
this->lstMyStatus->SmallImageList = this->imgLights;
this->lstMyStatus->TabIndex = 18;
this->lstMyStatus->UseCompatibleStateImageBehavior = false;
this->lstMyStatus->View = System::Windows::Forms::View::Details;
this->lstMyStatus->SelectedIndexChanged += gcnew System::EventHandler(this, &Status::lstMyStatus_SelectedIndexChanged);
最佳答案
当您将 GroupBox 的 AutoSize 属性设置为 True 时,它是自动的,它会根据需要增长以适应 ListView。这在大多数典型布局中并不常见,因为这会使其容易与其他控件重叠或超出表单边缘。
关于.net - 如何要求 Windows::Forms::GroupBox 调整大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3933727/
我有一个名为“groupBox”的组框。我想禁用整个组框,包括组框的名称。我附上图片。我希望它能解决这个问题
如何将 groupBox 标题对齐到中心而不是默认的左定位。 我在很多帖子中读到可以使用模板,但我不知道这样的事情。所以请让我知道如何在中心获得标题。 谢谢 !! 最佳答案 是的,您必须修改模板。 对
我想用WPF groupbox控件来实现这样的界面 有没有办法用WPF groupbox控件实现这样的界面? 最佳答案 一个简单的选择是仅重叠控件,然后使用边距进行播放
我在 WPF 组框中的停靠面板中有一个文本框和数据网格。 我正在从文本框中动态地在数据网格中添加行,
是否可以为 GroupBox 设置位置对齐? Header在 WPF 中?默认是放置在GroupBox的左上角大纲,但我希望它在顶部居中。我知道您可以使用以下方法设置文本的属性:
简单,我想要一个没有标题空间的GroupBox 最接近的是边框,但是“默认情况下”边框与组框的样式不同。 获得所需的GroupBox的最简单方法(最少的xaml /代码)是什么? 谢谢 最佳答案 如果
如何在表单的 GroupBox 中获得圆角?属性选项卡中有任何选项吗? 最佳答案 何时 visual styles已为您的应用程序启用,并且 FlatStyle 属性设置为“系统”时,组框看起来有稍微
我有一个关于 Visual Studio 中 C# 中的 UI 的问题。我想让我的组框自定义为如下所示: 然后,我还希望它的扩展取决于用户的屏幕分辨率,因此组框的大小不是固定的,例如我需要它占屏幕的
我有一个 groupBox,我在其中放置了三个 RadioButton 和一个 TextBox。他们的标签索引就像 5,6,7,8 从单选按钮开始并在文本框中结束但是在我的表单中当我选择时,它会转到单
我有一个 DataGridView 和一个包含一些 ComboBoxes 的 GroupBox 控件。 根据在 ComboBoxes 中选择的内容,网格中的元素会发生变化。 有没有办法说 If (So
我有以下自动生成的列表,我想用它们用 PyQt5 创建组框: Country = ['France', 'France', 'Germany', 'Austria', 'Austria','Spain
我在我的表单页面 (WinForms) 上使用 GroupBox 控件。 GroupBox 包含五个控件(RadioButtons)。 是否知道组框控件是否包含在控件内的任何按钮被选中时无效的属性?
如何去除白边? 最佳答案 您可以将 BorderThickness 设置为 0,但这也会隐藏黑色边框。白色是 ControlTemplate 的一部分,因此您需要创建一个新模板。这是我通过运行 Ref
我正在使用 Windows 应用程序表单 创建一个应用程序。我基本上是 C# 和 Visual Studio 的新手(从昨天开始就一直在使用它)。到目前为止,我已经成功创建了一个简单的表单,如屏幕截图
拿一个 GroupBox,把 Label 放在里面,然后设置 AutoSizeMode = GrowAndShrink 和 AutoSize = true . 会出现两个问题: Label 和 Gro
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我试图在 XAML 中创建一个包含三个 RadioButton 的 GroupBox。一切看起来都很好,除了我的 GroupBox header 中的 'g' 在底部被截断,如下所示: 我读过其他有格
我正在使用 Visual Studio 2010,但在工具箱中找不到 groupbox。它显示在组件列表中并被选中。我也尝试通过代码插入它,但它也没有显示在代码中。在一些预制页面中,例如 login
如何更改 GroupBox 标题的 Background?我正在尝试这样做: 关于wpf
我正在尝试创建这样的 GroupBox 设计。 我看过GroupBox.HeaderTemplate 但我在创建宽度为 100% 的蓝色背景色时遇到问题。 边界也是如此。 到目前为止我的代码
我是一名优秀的程序员,十分优秀!