Beispiel #1
0
        private void Initialize()
        {
            Instance  = this;
            _contents = new List <Content>()
            {
                new LogContent(),
                new IdentifierContent(),
                new SettingsContent()
            };

            _actionToolBar = new ToolBar(new[]
            {
                _contents[0].ContentName,
                _contents[1].ContentName,
                _contents[2].ContentName
            });
        }
Beispiel #2
0
 private static void DebugOptions()
 {
     Instance = (EditoreCore)GetWindow(typeof(EditoreCore), false, Constants.Title);
     Instance.Show();
 }