我想调整tabpage的大小,它的内部Control是dataGridview,最后调整包含theay的表格。
我已经实现了tabpages的Drag功能。现在我想根据DatagridviewRows增加tabPage大小。
if(dgv.Rows.count<=15)
Resize tabPage to show data to show 'n' No. Of Rows
else if(dgv.Rows.count>15)
Resize to show 15 Rows data then Scroll bar.
我已经尝试设置gridview的Dock和Anchor属性。但是只填充了tabpage。我希望使用增加的行数来调整tabpage的大小,最后调整包含它的Form。
请帮助。
答案 0 :(得分:0)
我认为更好的方法是根据您的表单调整大小来更改其他控件的大小。
private void Form1_Resize(object sender, EventArgs e) //form resize event
{
grdView1.SetBounds(Left,Top, this.Width-10,this.Height-10);
grdView1.Columns[0].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
grdView1.Columns[0].FillWeight = 45;
//same for other columns according to your requirments.
}
并根据表单大小设置标签页的大小。
答案 1 :(得分:0)
我使用下面的代码并且它有效。我将datagridview保存在splitcontainer的splitcontainer.Made dock属性中,以填充并将第二个面板保持为固定面板。根据Rowcount和Panels高度计算高度并更新Form Height。这种方式有效。
int height = this.Height;
CalculateFormHeight(ref height);
this.Size = new Size(this.Width, height);
private void CalculateFormHeight(ref int height)
{
if (dataGridViewToDisplay != null && dataGridViewToDisplay.Rows != null)
{
if (dataGridViewToDisplay.Rows.Count >= 15)
{
height = dataGridViewToDisplay.Rows[0].Height * 18 + splitContainer1.Panel2.Height;
}
else if (dataGridViewToDisplay.Rows.Count < 15)
{
height = dataGridViewToDisplay.Rows[0].Height * (dataGridViewToDisplay.Rows.Count + 3) + splitContainer1.Panel2.Height;
}
}
}
答案 2 :(得分:0)
要做到这一点没有太大问题,您必须从选项卡中删除表单,然后重新放置
private void frmMaster_Resize(object sender, EventArgs e)
{
foreach (TabPage tab in tabWindows.TabPages)
{
foreach (Control con in tab.Controls)
{
if (con is Form)
{
this.Controls.Add(con);
// Thread.Sleep(20);
con.Size = (new Size(tab.Width, tab.Height));
tab.Controls.Add(con);
//con.Width = tab.Width;
//con.Height= tab.Height;
}
}
}
}