Ejemplo n.º 1
0
        public override void Initialize()
        {
            base.Initialize();

            // Add a DelegateGraphicsScreen as the first graphics screen to the graphics
            // service. This lets us do the rendering in the Render method of this class.
            _graphicsScreen = new DelegateGraphicsScreen(_graphicsService)
            {
                RenderCallback = Render,
            };
            _graphicsService.Screens.Insert(0, _graphicsScreen);

            // Get the "SampleUI" screen that was created by the StartScreenComponent.
            _uiScreen = _uiService.Screens["SampleUI"];

            // Show the main menu window.
            _mainMenuWindow = new MainMenuWindow();
            _mainMenuWindow.Show(_uiScreen);
        }
Ejemplo n.º 2
0
    public override void Initialize()
    {
      base.Initialize();

      // Add a DelegateGraphicsScreen as the first graphics screen to the graphics
      // service. This lets us do the rendering in the Render method of this class.
      _graphicsScreen = new DelegateGraphicsScreen(_graphicsService)
      {
        RenderCallback = Render,
      };
      _graphicsService.Screens.Insert(0, _graphicsScreen);

      // Get the "SampleUI" screen that was created by the StartScreenComponent.
      _uiScreen = _uiService.Screens["SampleUI"];

      // Show the main menu window.
      _mainMenuWindow = new MainMenuWindow();
      _mainMenuWindow.Show(_uiScreen);
    }