Form1.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. // This is the code for your desktop app.
  11. // Press Ctrl+F5 (or go to Debug > Start Without Debugging) to run your app.
  12. namespace SketchAssistant
  13. {
  14. public partial class Form1 : Form
  15. {
  16. public Form1()
  17. {
  18. InitializeComponent();
  19. }
  20. private void Form1_Load(object sender, EventArgs e)
  21. {
  22. }
  23. //TODO: Remove this placeholde when real buttons are in place
  24. private void toolStripLabel1_Click(object sender, EventArgs e)
  25. {
  26. }
  27. // A Table Layout with one row and two columns.
  28. // Columns are 50% so that the window is evenly split.
  29. // The size is manually set relative to the window size.
  30. // Maybe change this to automatically be the size of a parent container...
  31. private void tableLayoutPanel1_Paint(object sender, PaintEventArgs e)
  32. {
  33. }
  34. }
  35. }