csharp: Fix an example

Event name changed.
The definition of the type BUTTON_CLICKED_Args seems odd as it's in
efl.ui namespace directly.
This commit is contained in:
Jean-Philippe Andre 2018-01-08 21:24:25 +09:00
parent fcb093473a
commit e3068274e6
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ public class Example
popup.SetVisible(true);
popup.SetButton(efl.ui.popup_alert.Button.Positive, "Ok");
popup.SetSize(150, 30);
popup.CLICKED += (object sender, efl.ui.CLICKED_Args e) => {
popup.BUTTON_CLICKED += (object sender, efl.ui.BUTTON_CLICKED_Args e) => {
popup.SetParent(null);
popup.Del();
};