2023-08-16 22:32:16 +08:00

43 lines
898 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
namespace AIMS.OremrUserControl
{
public class MyListBox : ListBox
{
private IContainer components = null;
private List<object> items0;
public List<object> Items0
{
get
{
return this.items0;
}
}
protected override void Dispose(bool disposing)
{
if (disposing && this.components != null)
{
this.components.Dispose();
}
base.Dispose(disposing);
}
private void InitializeComponent()
{
this.components = new Container();
}
public MyListBox()
{
this.InitializeComponent();
this.items0 = new List<object>();
}
}
}