From 3f3943e1de70e883dfe123eae247c0007d40722b Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Mon, 17 Aug 2020 11:48:41 -0400 Subject: [PATCH] oops forgot about this one --- Libraries/UniversalEditor.UserInterface/MainWindow.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Libraries/UniversalEditor.UserInterface/MainWindow.cs b/Libraries/UniversalEditor.UserInterface/MainWindow.cs index d89b7ea2..fe9d6269 100644 --- a/Libraries/UniversalEditor.UserInterface/MainWindow.cs +++ b/Libraries/UniversalEditor.UserInterface/MainWindow.cs @@ -29,6 +29,7 @@ using UniversalEditor.ObjectModels.Binary; using UniversalEditor.DataFormats.Binary; using System.Collections.Generic; using System.Text; +using MBS.Framework.UserInterface.Controls.ListView; namespace UniversalEditor.UserInterface { @@ -193,7 +194,7 @@ namespace UniversalEditor.UserInterface InitStartPage(); - ListView lvToolbox = new ListView(); + ListViewControl lvToolbox = new ListViewControl(); lvToolbox.RowActivated += LvToolbox_RowActivated; lvToolbox.Model = tmToolbox; lvToolbox.Columns.Add(new ListViewColumnText(tmToolbox.Columns[0], "Item"));