1

windows phone 7 XNA 中是否有任何类型的菜单按钮?我想为我的游戏创建一个菜单按钮,比如 Cocos2D 中的 CCMEnu?这是我的 GamePage.xaml.cs。

public GamePage()
    {
        InitializeComponent();

        newButton = new Button();
        newButton.Height = 75;
        newButton.Width = 250;
        ///newButton.Foreground = new System.Windows.Media.SolidColorBrush(Colors.Green);
        newButton.Content = "Dynamically added";


        // Get the content manager from the application
        contentManager = (Application.Current as App).Content;
        contentManager.RootDirectory = "Content";

        // Create a timer for this page
        timer = new GameTimer();
        timer.UpdateInterval = TimeSpan.FromTicks(333333);
        timer.Update += OnUpdate;
        timer.Draw += OnDraw;

        newButton.Click += new RoutedEventHandler(newButton_Click);
    }

  void setUpBackgroundAndTitle()
    {
        // Draw a background picture with scaling since the picture is large //
        spriteBatch.Draw(background, new Vector2(0, 0), null, Color.White, 0f, Vector2.Zero, new Vector2(0.9f, 0.9f), SpriteEffects.None, 0f);
        spriteBatch.Draw(rhymeImage, new Vector2(400, 0), null, Color.White, 0f, Vector2.Zero, new Vector2(1f, 1f), SpriteEffects.None, 1f);
        spriteBatch.Draw(gameImage, new Vector2(180, 0), null, Color.White, 0f, Vector2.Zero, new Vector2(1f, 1f), SpriteEffects.None, 1f);
        spriteBatch.Draw(titleImage, new Vector2(150, -70), null, Color.White, 0f, Vector2.Zero, new Vector2(1f, 1f), SpriteEffects.None, 1f);
        ContentPanel.Children.Add(newButton);
    }

xml 文件。

<Button Content="Button" Height="71" Name="button1" Width="160" Click="button1_Click" />
4

1 回答 1

1

为什么不直接使用 Silverlight + XNA 配方,而不是只使用 XNA?

这样您就可以使用 Silverlight 的所有控件(例如 Button!),而不必在 XNA 中从头开始绘制它们!

检查Windows Phone 代码示例中的“Silverlight/XNA 框架示例”示例。

于 2012-04-17T10:51:52.150 回答