using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Notepad
{
public partial class MainWindow : Form
{
public MainWindow()
{
InitializeComponent();
var menu = new MenuStrip() { BackColor = this.BackColor };
var file_Item = new ToolStripMenuItem("Файл");
var change_Item = new ToolStripMenuItem("Изменить");
var viewing_Item = new ToolStripMenuItem("Просмотр");
menu.Items.Add(file_Item);
menu.Items.Add(change_Item);
menu.Items.Add(viewing_Item);
this.Controls.Add(menu);
var tab = new TabControl() { Dock = DockStyle.Fill };
tab.TabPages.Add("text");
this.Controls.Add(tab);
}
}
}