我开始使用 monotouch.dialog 实用程序,如果有人能告诉我如何在元素(EntryElement、FloatElement、BoolElement 等)被更改后立即访问它的值,我将不胜感激用户。我可以使用一个代表:-
public void ViewingElementApi ()
{
viewingroot = CreateViewingRoot ();
var dv = new DialogViewController (viewingroot, true)
{
Autorotate=true
};
dv.ViewDisappearing += delegate
{
Console.WriteLine(EntryElement.Value);
};
configure.PushViewController (dv, true);
}
这个片段是由一个早先的问题提供的。但是,如果可能的话,我真的很想在用户更改它的那一刻获得一个值。
谢谢戈登异教徒