Ejemplo n.º 1
0
 private void InputBox_Answered(InputBox sender, string answer)
 {
     sender.Close();
 }
Ejemplo n.º 2
0
        private void ShareItem(MyItem item)
        {
            InputBox inputBox = new InputBox("Send to email:");

            inputBox.Answered += InputBox_Answered;
        }