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" />