Beispiel #1
0
        public MenuButton[] GetMenuItems(SessionProfile sessionProfile)
        {
            var xyPlotSeq = new MenuButton(sessionProfile.CurrentLanguage.Abbr == "RUS" ? "X-Y График" : "X-Y Plot Seq Marching")
            {
                Behavior = MenuButtonBehavior.DisableWhenInsideRegion,
                Icon     = Graphics.Specifics.BitmapFromNativeImage(Resources.menuIcon),
                Action   = args => args.CurrentRegion = CreateNew(args.SessionProfile)
            };

            var plotMenu = new MenuButton(sessionProfile.CurrentLanguage.StringsGUI[151]);

            plotMenu.AppendChild(xyPlotSeq);

            return(new[] { plotMenu });
        }