﻿	//<LAYOUT DESIGN>
	this.view = new View(this);
	this.view.width = 300;
	this.view.height = 200;
	
	this.recordsView = new RecordsView(this.view);
	this.recordsView.align = Align.Client;
	
	this.filesView = new FilesView(this.view);
	this.filesView.margins.left = 3;
	this.filesView.align = Align.Right;
	this.filesView.width = '25%';
	//<LAYOUT DESIGN>