适当的表格应用设计

时间:2010-05-27 13:10:11

标签: c# winforms

我在C#中创建一个WinForm应用程序,其中一个功能是在文本框中显示文本。我正在编写用于在单独的类中查询数据库的逻辑,并且无法访问我正在创建的类中的文本框元素(我在当前上下文错误中不存在“名称”)。我是否将所有表单逻辑放入Form1.cs文件中?

6 个答案:

答案 0 :(得分:3)

您应该尝试将显示逻辑与应用程序的其余部分分开 - 最简单的方法是让表单类处理获取/设置表单值。这意味着您的数据访问组件将查询数据库,表单必须将输出映射到可以显示的内容,例如

public class Form1 : Form
{
    public DataAccess Db { get; set; }

    public void UpdateSomething()
    {
        this.textbox.Text = this.Db.GetSomeDatabaseValue();
    }
}

答案 1 :(得分:1)

不要将业务逻辑与UI逻辑区分开来。您应该在Business类中引发一个事件并在UI表单中捕获它。从那里显示它。

答案 2 :(得分:0)

如果他们没有尝试将属性中的修饰符设置为public或internal。

编辑 - 编辑以适合答案格式

答案 3 :(得分:0)

如果要访问另一个类中的TextBox,请将访问修饰符更改为

  

公共或内部(如果它在同一个程序集中)

。 默认它是私人的

最好你可以将值传递给业务逻辑层。不是整个控件,总是不会好。

B.I是为了完成所有业务,所以文本框的价值就足够了。

答案 4 :(得分:0)

你看过backgroundworker了吗?这样,当您单击表单上的按钮时,可以异步运行。您表单上的所有更新内容都将在您的表单上完成。您的其他代码(您无法访问Form1)将“报告进度”。报告进度时,您可以将任何对象发送到Form1,然后在表单上的事件处理程序中,您可以从该对象获取信息并更新视图。例如,您可以使用它来更新进度条,同时保持UI响应。

答案 5 :(得分:0)

我们目前正在winforms中使用MVP模式进行应用程序。我们在winforms中使用绑定,因此UI将在数据发生时更新。我们的表单使用BindingSources和BindingLists。我们将主BindingSource绑定到我们的演示者类。

表单代码隐藏的示例

   using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

using SomeNameSpace.Utilities.UI;
using SomeNameSpace.Utilities.Validation;

namespace Management.UI
{
    public partial class ManualControl : UserControl, IManualRaffleView
    {


        private ManualPresenter _presenter;

        public ManualControl()
        {
            InitializeComponent();
        }


        [Browsable(false)]
        public ManualPresenter Presenter
        {
            get
            {
                return _presenter;
            }
            set
            {
                _presenter = value;
                if(_presenter != null)
                {
                    _manualPresenterBindingSource.DataSource = _presenter;
                    _ListBindingSource.DataSource = _presenter;
                    _ListBindingSource.DataMember = "Something";
                    _KindListBindingSource.DataSource = _presenter;
                    _KindListBindingSource.DataMember = "SomethingElse";

                    _presenter.CloseView += new Action(CloseMe);
                    _presenter.VerifyingCancel += new Func<bool>(VerifyingCancel);
                    _presenter.Showing += new Action(ShowMe);
                    _presenter.Synchronizer = this;
                }
            }
        }


        void CloseMe()
        {
            this.Enabled = false;
        }

        private void ManualRaffleForm_FormClosing(object sender, FormClosingEventArgs e)
        {
            e.Cancel = false;
        }

        private void ShowMe()
        {
            this.Enabled = true;
        }

        bool VerifyingCancel()
        {
            return MessageBox.Show("Cancel?", Notifier.ApplicationName,
                MessageBoxButtons.YesNo, MessageBoxIcon.Question,
                MessageBoxDefaultButton.Button2) == DialogResult.Yes;
        }

        private void _cancelButton_Click(object sender, EventArgs e)
        {
            Presenter.HandleCancel();
        }

        private void _initiateButton_Click(object sender, EventArgs e)
        {
            Presenter.HandleInitiate();
        }

        private void _saveButton_Click(object sender, EventArgs e)
        {
            if(Presenter.Error == true.ToString())
                Presenter.HandleDone();
            else
                _manualPresenterBindingSource.ResetBindings(false);
        }

    }
}

然后我们的Presenter实现了INotifyPropertyChanged,可能看起来像这样

   namespace SomeCompany.UI
    {
    public class ManualPresenter : INotifyPropertyChanged, IDataErrorInfo
        {
            #region Fields
                    //fields
                    #endregion Fields

                    public string SomeFormField
                    { get{ return _someFormField;}
                      set{
                            if(_someFormField != value)
                              {
                                 _someFormField = value;
                                  //Update Model if Needed
                                  _model.SomeFormField = _someFormField;
                                 NotifyCHanged("SomeFormField");
                               }
                          }
                     }

表单文本框将绑定到演示者中的属性,任何列表框或组合框都将绑定到BindingLists。 然后我们使用Linq to Sql作为我们的模型。表格中的逻辑非常少。大部分只是验证所必需的一点。