Fix ListBox overflow on high DPI

This commit is contained in:
剧毒的KCN
2024-09-07 21:16:33 +08:00
parent b37016a49c
commit 5b370ca376
17 changed files with 58 additions and 10 deletions

View File

@@ -811,5 +811,10 @@ namespace GrasscutterTools.Forms
{
CmbCommand.Text = "";
}
private void ListPages_MeasureItem(object sender, MeasureItemEventArgs e)
{
e.ItemHeight = ListPages.Font.Height * 3 / 2;
}
}
}