public FilterableFastListView()
			: base() {
			AlternateRowBackColor = Color.Lavender;
			EmptyListMsg = "No messages.";
			EmptyListMsgFont = new Font("Calibri", 12F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
			FullRowSelect = true;
			GridLines = true;
			HideSelection = false;
			HighlightBackgroundColor = Color.Tan;
			HighlightForegroundColor = Color.Black;
			HeaderStyle = ColumnHeaderStyle.Clickable;
			Location = new Point(0, 0);
			Name = "filterableFastListView";
			MultiSelect = false;
			PreserveSelectionOnChange = false;
			ShowGroups = false;
			UseAlternatingBackColors = true;
			UseCompatibleStateImageBehavior = false;
			UseCustomSelectionColors = true;
			UseFiltering = true;
			View = System.Windows.Forms.View.Details;
			VirtualMode = true;

			DataSource = new FilterableFastListViewDataSource(this);
		}
        public FilterableFastListView()
            : base()
        {
            AlternateRowBackColor    = Color.Lavender;
            EmptyListMsg             = "No messages.";
            EmptyListMsgFont         = new Font("Calibri", 12F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)));
            FullRowSelect            = true;
            GridLines                = true;
            HideSelection            = false;
            HighlightBackgroundColor = Color.Tan;
            HighlightForegroundColor = Color.Black;
            HeaderStyle              = ColumnHeaderStyle.Clickable;
            Location    = new Point(0, 0);
            Name        = "filterableFastListView";
            MultiSelect = false;
            PreserveSelectionOnChange = false;
            ShowGroups = false;
            UseAlternatingBackColors        = true;
            UseCompatibleStateImageBehavior = false;
            UseCustomSelectionColors        = true;
            UseFiltering = true;
            View         = System.Windows.Forms.View.Details;
            VirtualMode  = true;

            DataSource = new FilterableFastListViewDataSource(this);
        }