public ResourceEditorContent(LiteExtension parent, OpenedFile file)
            : base(parent)
        {
            AssociatedFile = file;
            this.Text = file.FilePath.FileName + file.FilePath.Extension;

            Control = _editorControl = new ResourceEditorControl(file)
            {
                Dock = System.Windows.Forms.DockStyle.Fill,
            };
        }