Changeset 13 for Common/ComboBoxEx.cs


Ignore:
Timestamp:
Feb 8, 2021, 4:23:17 PM (3 years ago)
Author:
chronos
Message:
  • Modified: Fixes to existing classes.
  • Added: File type association method.
  • Added: RecentFiles and Table classes.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Common/ComboBoxEx.cs

    r3 r13  
    1 using System;
     1using System;
    22using System.Collections.Generic;
    33using System.ComponentModel;
     
    3131                if (index >= 0) Items.RemoveAt(index);
    3232                Text = previousText;
    33                 Items.Insert(0, Text);
     33                Items.Insert(0, previousText);
    3434
    3535                while (Items.Count > maxHistoryCount)
Note: See TracChangeset for help on using the changeset viewer.