﻿class Dialog extends DialogView {
  constructor(app) {
	  super(app);
	  
	  this.caption = app.label;
	  this.left = '25%';
	  this.top = '20%';
	  this.width = '50%';
	  this.height = '60%';
	  
	  //<LAYOUT DESIGN> Changing this code manually might break the Page Designer.
	  this.textView = new TextView(this);
	  this.textView.left = '45%';
	  this.textView.top = '45%';
	  this.textView.width = '20ch';
	  this.textView.height = '2ch';
	  this.textView.textAlignment = Alignment.Center;
	  this.textView.textVerticalAlignment = VerticalAlignment.Center;
	  this.textView.text = '<Add controls here>';
	  //<LAYOUT DESIGN>
  }
}

