summaryrefslogtreecommitdiff
path: root/src/Notepad/Presentation/Views/Shell/WindowShell.cs
blob: e90b11dfbe6c624a0f5dabd6cf3f4abae85e34dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System.Windows.Forms;

namespace Notepad.Presentation.Views.Shell {
    public partial class WindowShell : Form {
        public WindowShell() {
            InitializeComponent();
        }

        public MenuStrip MenuStrip() {
            return uxMainMenuStrip;
        }
    }
}