mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-04 16:19:25 +03:00
Merge pull request #26 from janrobas/master
Fixed resizing issue in DarkComboBox
This commit is contained in:
commit
113b267490
@ -95,6 +95,13 @@ namespace DarkUI.Controls
|
|||||||
PaintCombobox();
|
PaintCombobox();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override void OnResize(EventArgs e)
|
||||||
|
{
|
||||||
|
base.OnResize(e);
|
||||||
|
_buffer = null;
|
||||||
|
Invalidate();
|
||||||
|
}
|
||||||
|
|
||||||
private void PaintCombobox()
|
private void PaintCombobox()
|
||||||
{
|
{
|
||||||
if (_buffer == null)
|
if (_buffer == null)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user