master
 1using System.Windows.Forms;
 2
 3namespace Notepad.Presentation.Views.Shell {
 4    public partial class WindowShell : Form {
 5        public WindowShell() {
 6            InitializeComponent();
 7        }
 8
 9        public MenuStrip MenuStrip() {
10            return uxMainMenuStrip;
11        }
12    }
13}