remove unused code

This commit is contained in:
Michael Becker 2020-09-19 23:49:56 -04:00
parent 6a88263c37
commit 71e64ea1ff
No known key found for this signature in database
GPG Key ID: 506F54899E2BFED7
2 changed files with 1 additions and 7 deletions

View File

@ -9,8 +9,6 @@ namespace UniversalEditor.UserInterface
{
public interface IHostApplicationWindow
{
event EventHandler WindowClosed;
Document NewFile();
void NewProject(bool combineObjects = false);

View File

@ -731,9 +731,6 @@ namespace UniversalEditor.UserInterface
private void InitStartPage()
{
// StartPageDialog dlg = new StartPageDialog();
// dlg.ShowDialog();
StartPagePanel lblStartPage = new StartPagePanel();
InitDocTab("Start Page", "Start Page", lblStartPage);
}
@ -761,6 +758,7 @@ namespace UniversalEditor.UserInterface
MBS.Framework.UserInterface.Application.Stop();
}
}
protected override void OnCreated(EventArgs e)
{
this.RegisterDropTarget(new DragDropTarget[]
@ -1396,8 +1394,6 @@ namespace UniversalEditor.UserInterface
}
}
public event EventHandler WindowClosed;
public bool FullScreen { get; set; }
private SolutionObjectModel _CurrentSolution = null;