ATMLCommonLibrary.controls.lists.SpecificationListControl.SpecificationListControl C# (CSharp) Method

SpecificationListControl() public method

public SpecificationListControl ( ) : System
return System
        public SpecificationListControl()
        {
            InitializeComponent();
            lvList.FullRowSelect = true;
            lvList.HideSelection = false;
            lvList.View = View.Details;
            lvList.Columns.Add("Name");
            lvList.Columns[0].Width = lvList.Width;
            lvList.Resize += new EventHandler(lvList_Resize);
        }