-
Notifications
You must be signed in to change notification settings - Fork 705
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
File dialog listbox overlaps with buttons #3967
Comments
26 tasks
Ok I can now repro, fix is to add a call to var ofd = new OpenDialog()
{
Title = "Open",
AllowedTypes = new List<IAllowedType>(new[] { new AllowedType("View", SourceCodeFile.ExpectedExtension) })
};
ofd.SetupNiceColorSchemes();
// This call fixes issue
ofd.Layout();
Application.Run(ofd, this.ErrorHandler); |
Maybe the fix is to call |
Maybe v2 driver run should Layout on |
I think it's better on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Listbox entries go too far down, should only go to buttons
Screenshots

Desktop (please complete the following information):
Smartphone (please complete the following information):
Additional context
Add any other context about the problem here.
Set Project & Milestone
If you have access, please don't forget to set the right Project and Milestone.
The text was updated successfully, but these errors were encountered: