// NAME : MainWindow // DESCRIPTION : Constructor. Creates a MainWindow instance + UserControls // PARAMETERS : void // RETURNS : n/a public MainWindow() { InitializeComponent(); Instance = this; tabsLayout = new Tabs(); customerSelectionLayout = new CustomerSelection(); salesRecordLayout = new SalesRecord(); this.Content = tabsLayout; }
public CustomerSelection() { InitializeComponent(); Instance = this; }