0

当我单击 buttonOpenAlbum 并在 AlbumListBox 中选择了一个项目时,我试图打开一个新表单 (FormAlbum)。

如果我只是在 buttonOpenAlbum_Click 中有这个:

private void buttonOpenAlbum_Click(object sender, EventArgs e)
{
        FormAlbum MusicForm = new FormAlbum(this);
        MusicForm.ShowDialog();
}

新的 from 打开没有错误。但是,只要我提到“AlbumListBox.SelectedItem”(如下面的 FormFormMain 代码),我就会在以下位置收到“StackOverflowException was unhandled”:

public ListBox AlbumListBox
{
    get
    { // <-This bracket here is where the error highlights

我不明白为什么会出现此错误,只是它必须与 AlbumListBox 有关。我究竟做错了什么?任何帮助表示赞赏,谢谢。

窗体主窗体:

public FormMain()
{
    InitializeComponent();
}

private void buttonAddAlbum_Click(object sender, EventArgs e)
{
    FormAlbumAC addAlbumForm = new FormAlbumAC(this);
    addAlbumForm.ShowDialog();
}

private void buttonOpenAlbum_Click(object sender, EventArgs e)
{
    if (AlbumListBox.SelectedItem != null)
    {
        MessageBox.Show(AlbumListBox.SelectedItem.ToString());
        FormAlbum MusicForm = new FormAlbum(this);
        MusicForm.ShowDialog();
    }
    else
    {
        MessageBox.Show("You need to select an album from the list to open.");
    }
}

public static class PublicVars
{
    public static List<Album> AlbumList { get; set; }

    static PublicVars()
    {
        AlbumList = new List<Album>(MAX_ALBUMS);
    }
}

public ListBox AlbumListBox
{
    get
    {
        return AlbumListBox;
    }
}
4

1 回答 1

3

查看您的属性实现:

public ListBox AlbumListBox
{
    get
    {
        return AlbumListBox;
    }
}

它只是递归地调用自己。如果我们将其转换为方法,可能会更容易看出:

public ListBox GetAlbumListBox()
{
    return GetAlbumListBox();
}

这就是为什么你有一个溢出。不清楚你的意思是什么......你期望价值来自哪里?您可能需要一个变量来支持该属性。您期望设置返回的值是什么?

我也强烈反对PublicVars课程的设计。除了命名之外,您基本上是在使用全局变量——这不是一个好主意。找出哪些类需要访问数据,以及如何适当地获取这些数据。

于 2013-04-06T11:26:36.427 回答