ScrollBar
Hi Dapfor Team,
I have a problem with the vertical scrollbar!
I use this simple code:
using System.Windows.Forms;
using Dapfor.Net.Ui;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
Grid m_Grid;
public Form1()
{
InitializeComponent();
this.m_Grid = new Grid();
this.m_Grid.Dock = DockStyle.Fill;
this.Controls.Add(this.m_Grid);
Header header = new Header();
header.Add(new Column("ID", "ID", 200));
this.m_Grid.Headers.Add(header);
}
}
}
When i resize the window smaller than the total columns width is then the vertical scrollbar becomes visible. After that i resize the window back to a size bigger than the total columns width is and the vertical scrollbar should become invisible, but it doesnt! It is in a state where you can scroll but nothing happened.
-
And i made a mistake in my problem description: i mean the horizontal scrollbar.
0 -
Hi,
The version 2.5.1 of .Net Grid fixes this bug.
Best regards,
The Dapfor Team0 -
thanks!
0
Please sign in to leave a comment.
Comments
3 comments