Beispiel #1
0
 private void Listbox_BeforeDrawItem(object sender, ListBox.ObjectCollection items, DrawItemEventArgs e)
 {
     if (Items.Count != LastCount)
     {
         listbox.SetScrollInfo();
         LastCount = Items.Count;
         ItemsCountChange?.Invoke(this, null);
     }
 }