using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; // This is the code for your desktop app. // Press Ctrl+F5 (or go to Debug > Start Without Debugging) to run your app. namespace SketchAssistant { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { } //TODO: Remove this placeholde when real buttons are in place private void toolStripLabel1_Click(object sender, EventArgs e) { } // A Table Layout with one row and two columns. // Columns are 50% so that the window is evenly split. // The size is manually set relative to the window size. // Maybe change this to automatically be the size of a parent container... private void tableLayoutPanel1_Paint(object sender, PaintEventArgs e) { } } }