fork download
  1. using System;
  2. using System.Windows.Forms;
  3.  
  4. namespace WindowsFormsApplication1
  5. {
  6. public partial class Form1 : Form
  7. {
  8. public Form1()
  9. {
  10. InitializeComponent();
  11. }
  12.  
  13. MenuStrip menuStrip1 = new MenuStrip();
  14. StatusStrip statusStrip1 = new StatusStrip();
  15. TextBox textBox1 = new TextBox();
  16.  
  17. private void Form1_Load(object sender, EventArgs e)
  18. {
  19. menuStrip1.Dock = DockStyle.Top;
  20. statusStrip1.Dock = DockStyle.Bottom;
  21. textBox1.Dock = DockStyle.Fill;
  22. textBox1.Multiline = true;
  23. textBox1.ScrollBars = ScrollBars.Both;
  24.  
  25. //zオーダーは親コントロール(この場合はForm1)に追加した段階できまる。
  26. this.Controls.Add(menuStrip1);
  27. this.Controls.Add(statusStrip1);
  28. this.Controls.Add(textBox1);
  29.  
  30. //zオーダーを調整可能
  31. textBox1.BringToFront();
  32. statusStrip1.SendToBack();
  33. }
  34. }
  35. }
  36.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty