簡體   English   中英

通過約定/反射動態連接視圖,模型和演示者

[英]Wiring View, Model and Presenter dynamically, by convention / reflection

我正在嘗試使用MVP模式開發應用程序。

問題是手動連接所有代碼。 我希望減少所需的代碼。 我試圖復制另一個解決方案,但無法上班。 我正在使用Winforms,而我用作源的解決方案是使用WPF。

它將按照一些約定進行連線:

查看事件按名稱進行關聯。 例如:視圖上的“ Loaded”事件將連接到演示者上的“ OnLoaded()”方法。按鈕命令按名稱連接。 例如:MoveNext”按鈕連接到“ OnMoveNext()”方法。網格雙擊按名稱連接。例如:雙擊“ Actions”將連接到“ OnActionsChoosen(ToDoAction)”。

WPF中的工作代碼是:

    private static void WireListBoxesDoubleClick(IPresenter presenter)
    {
        var presenterType = presenter.GetType();
        var methodsAndListBoxes = from method in GetActionMethods(presenterType)
                                  where method.Name.EndsWith("Choosen")
                                  where method.GetParameters().Length == 1
                                  let elementName = method.Name.Substring(2, method.Name.Length - 2 /*On*/- 7 /*Choosen*/)
                                  let matchingListBox = LogicalTreeHelper.FindLogicalNode(presenter.View, elementName) as ListBox
                                  where matchingListBox != null
                                  select new {method, matchingListBox};

        foreach (var methodAndEvent in methodsAndListBoxes)
        {
            var parameterType = methodAndEvent.method.GetParameters()[0].ParameterType;
            var action = Delegate.CreateDelegate(typeof(Action<>).MakeGenericType(parameterType),
                                                 presenter, methodAndEvent.method);

            methodAndEvent.matchingListBox.MouseDoubleClick += (sender, args) =>
            {
                var item1 = ((ListBox)sender).SelectedItem;
                if(item1 == null)
                    return;
                action.DynamicInvoke(item1);
            };
        }   
    }

    private static void WireEvents(IPresenter presenter)
    {
        var viewType = presenter.View.GetType();
        var presenterType = presenter.GetType();
        var methodsAndEvents =
                from method in GetParameterlessActionMethods(presenterType)
                let matchingEvent = viewType.GetEvent(method.Name.Substring(2))
                where matchingEvent != null
                where matchingEvent.EventHandlerType == typeof(RoutedEventHandler)
                select new { method, matchingEvent };

        foreach (var methodAndEvent in methodsAndEvents)
        {
            var action = (Action)Delegate.CreateDelegate(typeof(Action),
                                                          presenter, methodAndEvent.method);

            var handler = (RoutedEventHandler)((sender, args) => action());
            methodAndEvent.matchingEvent.AddEventHandler(presenter.View, handler);
        }
    }

    private static IEnumerable<MethodInfo> GetActionMethods(Type type)
    {
        return from method in type.GetMethods(BindingFlags.DeclaredOnly | BindingFlags.Public | BindingFlags.Instance)
               where method.Name.StartsWith("On")
               select method;
    }

    private static IEnumerable<MethodInfo> GetParameterlessActionMethods(Type type)
    {
        return from method in GetActionMethods(type)
               where method.GetParameters().Length == 0
               select method;
    }

無論如何,我嘗試將其移植到WinForm應用程序,但沒有成功。 我將RoutedEventHandlers更改為EventHandlers ,但找不到該LogicalTreeHelper

我有點堅持。 我可以手動進行操作,但是我發現這個微型框架非常巧妙,以至於幾乎是瘋狂的。

PS:來源是http://msdn.microsoft.com/en-us/magazine/ee819139.aspx

編輯

我才意識到 我不是很傻,上面的代碼不是很容易測試,是嗎?

好。 我自己動手了。 我只是發布答案,因為至少其他人會覺得有趣。

一,觀點

public interface IBaseView
{
    void Show();
    C Get<C>(string controlName) where C : Control; //Needed to later wire the events
}

public interface IView : IBaseView
{
    TextBox ClientId { get; set; } //Need to expose this
    Button SaveClient { get; set; }
    ListBox MyLittleList { get; set; }
}

public partial class View : Form, IView
{
    public TextBox ClientId //since I'm exposing it, my "concrete view" the controls are camelCased
    {
        get { return this.clientId; }
        set { this.clientId = value; }
    }

    public Button SaveClient
    {
        get { return this.saveClient; }
        set { this.saveClient = value; }
    }

    public ListBox MyLittleList
    {
        get { return this.myLittleList; }
        set { this.myLittleList = value; }
    }

    //The view must also return the control to be wired.
    public C Get<C>(string ControlName) where C : Control
    {
        var controlName = ControlName.ToLower();
        var underlyingControlName = controlName[0] + ControlName.Substring(1);
        var underlyingControl = this.Controls.Find(underlyingControlName, true).FirstOrDefault();
        //It is strange because is turning PascalCase to camelCase. Could've used _Control for the controls on the concrete view instead
        return underlyingControl as C;
    }

現在,主持人:

public class Presenter : BasePresenter <ViewModel, View>
{
    Client client;
    IView view;
    ViewModel viewModel;

    public Presenter(int clientId, IView viewParam, ViewModel viewModelParam)
    {
        this.view = viewParam;
        this.viewModel = viewModelParam;

        client = viewModel.FindById(clientId);
        BindData(client);
        wireEventsTo(view); //Implement on the base class
    }

    public void OnSaveClient(object sender, EventArgs e)
    {
        viewModel.Save(client);
    }

    public void OnEnter(object sender, EventArgs e)
    {
        MessageBox.Show("It works!");
    }

    public void OnMyLittleListChanged(object sender, EventArgs e)
    {
        MessageBox.Show("Test");
    }
}

“魔術”發生在基類。 在wireEventsTo(IBaseView視圖)中

public abstract class BasePresenter
    <VM, V>
    where VM : BaseViewModel
    where V : IBaseView, new()
{

    protected void wireEventsTo(IBaseView view)
    {
        Type presenterType = this.GetType();
        Type viewType = view.GetType();

        foreach (var method in presenterType.GetMethods())
        {
            var methodName = method.Name;

            if (methodName.StartsWith("On"))
            {
                try
                {
                    var presenterMethodName = methodName.Substring(2);
                    var nameOfMemberToMatch = presenterMethodName.Replace("Changed", ""); //ListBoxes wiring

                    var matchingMember = viewType.GetMember(nameOfMemberToMatch).FirstOrDefault();

                    if (matchingMember == null)
                    {
                        return;
                    }

                    if (matchingMember.MemberType == MemberTypes.Event)
                    {
                        wireMethod(view, matchingMember, method);    
                    }

                    if (matchingMember.MemberType == MemberTypes.Property)
                    {
                        wireMember(view, matchingMember, method);    
                    }

                }
                catch (Exception ex)
                {
                    continue;
                }
            }
        }
    }

    private void wireMember(IBaseView view, MemberInfo match, MethodInfo method)
    {
        var matchingMemberType = ((PropertyInfo)match).PropertyType;

        if (matchingMemberType == typeof(Button))
        {
            var matchingButton = view.Get<Button>(match.Name);

            var eventHandler = (EventHandler)EventHandler.CreateDelegate(typeof(EventHandler), this, method);

            matchingButton.Click += eventHandler;
        }

        if (matchingMemberType == typeof(ListBox))
        {
            var matchinListBox = view.Get<ListBox>(match.Name);

            var eventHandler = (EventHandler)EventHandler.CreateDelegate(typeof(EventHandler), this, method);

            matchinListBox.SelectedIndexChanged += eventHandler;
        }
    }

    private void wireMethod(IBaseView view, MemberInfo match, MethodInfo method)
    {
        var viewType = view.GetType();

        var matchingEvent = viewType.GetEvent(match.Name);

        if (matchingEvent != null)
        {
            if (matchingEvent.EventHandlerType == typeof(EventHandler))
            {
               var eventHandler = EventHandler.CreateDelegate(typeof(EventHandler), this, method);
               matchingEvent.AddEventHandler(view, eventHandler);
            }

            if (matchingEvent.EventHandlerType == typeof(FormClosedEventHandler))
            {
                var eventHandler = FormClosedEventHandler.CreateDelegate(typeof(FormClosedEventHandler), this, method);
                matchingEvent.AddEventHandler(view, eventHandler);
            }
        }
    }
}

我已經在這里工作了。 它將自動將Presenter上的EventHandler連接到IView上控件的默認事件。

另外,順便說一句,我想共享BindData方法。

    protected void BindData(Client client)
    {
        string nameOfPropertyBeingReferenced; 

        nameOfPropertyBeingReferenced = MVP.Controller.GetPropertyName(() => client.Id);
        view.ClientId.BindTo(client, nameOfPropertyBeingReferenced);

        nameOfPropertyBeingReferenced = MVP.Controller.GetPropertyName(() => client.FullName);
        view.ClientName.BindTo(client, nameOfPropertyBeingReferenced);
    }

    public static void BindTo(this TextBox thisTextBox, object viewModelObject, string nameOfPropertyBeingReferenced)
    {
        Bind(viewModelObject, thisTextBox, nameOfPropertyBeingReferenced, "Text");
    }

    private static void Bind(object sourceObject, Control destinationControl, string sourceObjectMember, string destinationControlMember)
    {
        Binding binding = new Binding(destinationControlMember, sourceObject, sourceObjectMember, true, DataSourceUpdateMode.OnPropertyChanged);
        //Binding binding = new Binding(sourceObjectMember, sourceObject, destinationControlMember);
        destinationControl.DataBindings.Clear();
        destinationControl.DataBindings.Add(binding);
    }

    public static string GetPropertyName<T>(Expression<Func<T>> exp)
    {
        return (((MemberExpression)(exp.Body)).Member).Name;
    }

這從綁定中消除了“魔術字符串”。 我認為它也可以在INotificationPropertyChanged上使用。

無論如何,我希望有人覺得它有用。 如果您想指出代碼的味道,我完全同意。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM