简体   繁体   English

如何将数据传递到MonoTouch.Dialog的代理?

[英]How can I pass data into MonoTouch.Dialog's delegates?

Given the following code, how can I pass data from "First Name", "Last Name", etc. into my method BookASession.SendMessage(); 鉴于以下代码,我如何将“First Name”,“Last Name”等数据传递给我的方法BookASession.SendMessage(); ?

RootElement CreateBookASessionRoot() 
{
    return new RootElement("Book a Session") {
        new Section() {
            new EntryElement("First Name", "First Name", ""),
            new EntryElement("Last Name", "Last Name", ""),
            new EntryElement("Email", "Email", "") { KeyboardType = UIKeyboardType.EmailAddress },
            new DateElement("Event Date", DateTime.Now),
            new RootElement ("Type of Shoot", new RadioGroup (0)){
                    new Section (){
                        new RadioElement("Wedding"),
                    new RadioElement("Portrait"),
                    new RadioElement("Boudoir"),
                    new RadioElement("Other")
                    }
            } ,
            new EntryElement("Message", "Message", "")
        } ,
        new Section () {
            new StringElement("Send", delegate { BookASession.SendMessage(); } )
        }
    };                      
}       

The way i like to accomplish this is by keeping references to my input elements. 我想要实现这一点的方法是保持对我的输入元素的引用。 This way i can easily fetch their input values without having to search through the entire element tree. 通过这种方式,我可以轻松获取其输入值,而无需搜索整个元素树。 I'm doing so by encapsulating the creation logic for a particular screen in a separate clase, like this: 我是通过将特定屏幕的创建逻辑封装在一个单独的clase中来实现的,如下所示:

public class BookASessionScreen
{
    private RootElement _root = null;

    private EntryElement _firstName = null;

    private EntryElement _lastName = null;

    private EntryElement _email = null;

    private DateElement _date = null;

    private RootElement _typeOfShoot = null;

    private EntryElement _message = null;

    private void CreateRoot()
    {
        _firstName = new EntryElement("First Name", "First Name", "");
        _lastName = _firstName = new EntryElement("First Name", "First Name", "");
        _email = new EntryElement("Email", "Email", "") { KeyboardType = UIKeyboardType.EmailAddress };
        _date = new DateElement("Event Date", DateTime.Now);
        _typeOfShoot = new RootElement ("Type of Shoot", new RadioGroup (0)){
            new Section () {
                new RadioElement("Wedding"),
                new RadioElement("Portrait"),
                new RadioElement("Boudoir"),
                new RadioElement("Other")
            }
        };
        _message = new EntryElement("Message", "Message", "");

        _root = new RootElement("Book a Session") {
            new Section() {
                _firstName,
                _lastName,
                _email,
                _date,
                _typeOfShoot,
                _message
            } ,
            new Section () {
                new StringElement("Send", delegate { 
                    //BookASession.SendMessage(_firstName.Value, _lastName.Value, ...)
                })
            }
        };
    }

    public RootElement Root 
    {
        get {
            if (_root == null) {
                CreateRoot();
            }
            return _root;
        }
    }
}

Also, you may want to decouple the form processing logic by having the class expose an event, like this: 此外,您可能希望通过让类公开事件来解耦表单处理逻辑,如下所示:

1 - Create a class that will hold the event data, extending EventArgs: 1 - 创建一个包含事件数据的类,扩展EventArgs:

public class BookASessionArgs : EventArgs
{
    public string FirstName
    {
        get;
        set;
    }

    public string LastName
    {
        get;
        set;
    }

    public string Email
    {
        get;
        set;
    }
}

2 - Declare your event in BookASessionScreen: 2 - 在BookASessionScreen中声明您的事件:

public event EventHandler BookASession;

3 - Fire the event in your delegate 3 - 在您的代表中触发事件

if (BookASession != null) {
    BookASession(this, new BookASessionArgs() {
        FirstName = _firstName.Value,
        LastName = _lastName.Value
        //..
    });
}

The problem with the value properties not getting updated can be solved by calling the method ResignFirstResponder on the element that has focus. 可以通过在具有焦点的元素上调用ResignFirstResponder方法来解决值属性未更新的问题。 I guess this is something iOS specific. 我猜这是iOS特有的。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM