0

我现在正在研究设计模式,我对这个模型视图演示器相当陌生,虽然我已经在 asp.net mvc 方面有经验,但我正在尝试在 winforms 中实现 mvp。

文本框中的字符串将使用基于组合框的算法进行排序。现在,当我单击按钮时,它会引发空引用异常

这是用户界面:在此处输入图像描述

这是我的课程和代码:

    class FormPresenter
        {
            private ISortingView _view;
            private string _algorithm;
            private StringToSortModel sortMe = new StringToSortModel();

            public FormPresenter(ISortingView view)
            {
                _view = view;
                _view.sortTheString += view_sortString;
                sortMe.sortThis = view.stringToSort;
                _algorithm = _view.algorithm;
                //Algorithm = view.stringToSort;
                //sortingform.sortTheString += (obj
            }

            private void view_sortString(object sender, EventArgs e)
            {

                SortContext context = new SortContext();
                _view.sortedText = context.Sort(sortMe.sortThis.ToCharArray());


            }

        }


 interface ISortingView
    {
        event EventHandler sortTheString;
        string stringToSort { get; }
        string algorithm { get; }
        string sortedText { get; set; }

    }


     public partial class SortingForm : Form, ISortingView
        {
            public SortingForm()
            {
                InitializeComponent();
                comboBox1.Items.Add("Bubble Sort");
                comboBox1.Items.Add("Insertion Sort");
                comboBox1.SelectedItem = "Bubble Sort";
                textBox1.Text = "Emiri";
            }


            public event EventHandler sortTheString;
            public string algorithm { get { return comboBox1.SelectedItem.ToString(); } }
            public string stringToSort { get { return textBox1.Text; } }
            public string sortedText { get { return label2.Text; } set { label2.Text = value; } }




            private void Form1_Load(object sender, EventArgs e)
            {

            }


            private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
            {

            }

            private void button1_Click(object sender, EventArgs e)
            {
                //char[] x = textBox1.Text.ToCharArray();
                //SortContext con = new SortContext();
                //con.SetSortStrategy(new InsertionSort());
                //label2.Text = con.Sort(x);
                //if(sortString != null)
                //{

                //this prodcues a null exception error
                sortTheString(sender, e);


                //}



            }

    static class Program
        {
            /// <summary>
            /// The main entry point for the application.
            /// </summary>
            [STAThread]
            static void Main()
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                var mainForm = new SortingForm();
                var presenter = new FormPresenter(mainForm);
                Application.Run(new SortingForm());


            }
        }

我没有包含模型的代码和包含排序函数的类以保持这篇文章的简短。我遇到的问题是,单击按钮时会引发空引用异常错误,这是我已经坚持了几个小时的问题。

先生/女士,您的回答会很有帮助。谢谢++

4

2 回答 2

1

您的 null 来自此行

sortTheString(sender, e);

因为您没有在 Presenter 中使用相同的表单实例。在您的主要内容中更改为...

Application.Run(mainForm);

事件处理程序没有任何订阅者(因为Application.Run(new SortingForm());C# 会将其视为 null 而不是空的订阅者列表。

于 2013-02-25T06:27:42.937 回答
0
ISortingView mainForm = new SortingForm();
var presenter = new FormPresenter(mainForm);
Application.Run(mainForm as Form);
于 2013-02-26T06:02:52.293 回答