Changeset 14 for Common/ComboBoxEx.cs
- Timestamp:
- Aug 2, 2022, 11:46:25 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Common/ComboBoxEx.cs
r13 r14 1 using System;2 1 using System.Collections.Generic; 3 using System.ComponentModel;4 using System.Diagnostics;5 2 using System.Linq; 6 using System.Text;7 3 using System.Windows.Forms; 8 4 using Microsoft.Win32; 9 using Common;10 5 11 6 namespace Common … … 27 22 if (Text.Trim() != "") 28 23 { 24 BeginUpdate(); 29 25 string previousText = Text; 30 26 int index = Items.IndexOf(Text); … … 35 31 while (Items.Count > maxHistoryCount) 36 32 Items.RemoveAt(Items.Count - 1); 33 EndUpdate(); 37 34 } 38 35 }
Note:
See TracChangeset
for help on using the changeset viewer.