0

私は今、デザイン パターンを勉強しています。私はこのモデル ビュー プレゼンターにかなり慣れていませんが、既に asp.net mvc での経験があります。

テキスト ボックス内の文字列は、コンボ ボックスに基づくアルゴリズムで並べ替えられます。ボタンをクリックすると、null参照例外がスローされます

UI は次のとおりです。ここに画像の説明を入力

ここに私のクラスとコードがあります:

    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());


            }
        }

この投稿を短くするために、モデルのコードとソート機能を含むクラスは含めていません。私が抱えている問題は、ボタンをクリックするとnull参照例外エラーがスローされることです。これは、すでに何時間も立ち往生しています。

閣下/奥様、あなたの答えは大変役に立ちます。ありがとう++

4

2 に答える 2

1

あなたのヌルはこの行から来ています

sortTheString(sender, e);

プレゼンターで同じフォームインスタンスを使用していないためです。あなたのメインでこれに変更してください...

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 に答える