实例化字段无法参考

时间:2013-09-30 21:04:42

标签: c# c#-5.0 windows-applications

我是编程新手,并尝试学习用于Windows 8应用程序开发的C#。我正在使用“Head First C# - 3rd Edition”这本书。第一个例子似乎失败了。对于那些有这本书的人,这在第33页列出。在下面的代码中,我已经删除了不必要的方法,只留下了相关的代码。

public sealed partial class MainPage : Save_the_Humans.Common.LayoutAwarePage
{
    public MainPage()
    {
        Random random = new Random();
        this.InitializeComponent();
    }

    private void startButton_Click(object sender, RoutedEventArgs e)
    {
        AddEnemy();
    }

    private void AddEnemy()
    {
        ContentControl enemy = new ContentControl();
        enemy.Template = Resources["EnemyTemplate"] as ControlTemplate;
        AnimateEnemy(enemy, 0, playArea.ActualWidth - 100, "(Canvas.Left)");
        AnimateEnemy(enemy, random.Next((int)playArea.ActualHeight - 100),
            random.Next((int)playArea.ActualHeight - 100), "(Canvas.Top)");
        playArea.Children.Add(enemy);
    }

    private void AnimateEnemy(ContentControl enemy, double from, double to, string propertyToAnimate)
    {
        Storyboard storyBoard = new Storyboard() { AutoReverse = true, RepeatBehavior = RepeatBehavior.Forever };
        DoubleAnimation animation = new DoubleAnimation()
        {
            From = from,
            To = to,
            Duration = new Duration(TimeSpan.FromSeconds(random.Next(4, 6)))
        };
        Storyboard.SetTarget(animation, enemy);
        Storyboard.SetTargetProperty(animation, propertyToAnimate);
        storyBoard.Children.Add(animation);
        storyBoard.Begin();
    }
}

问题在于使用实例化字段“随机”。编译时错误说“当前上下文中不存在名称'随机'。”我不太了解可能导致问题的原因。

        AnimateEnemy(enemy, random.Next((int)playArea.ActualHeight - 100),
            random.Next((int)playArea.ActualHeight - 100), "(Canvas.Top)");

2 个答案:

答案 0 :(得分:2)

那不是一个领域;它是构造函数中的局部变量 它不存在于构造函数之外。

您需要将其更改为字段。

答案 1 :(得分:2)

您的随机变量不是字段。将构造函数更改为:

private Random random;
public MainPage()
{
    this.random = new Random();
    this.InitializeComponent();
}