diff --git a/reference/csharp/snippets/Efl.Ui.Win.cs b/reference/csharp/snippets/Efl.Ui.Win.cs new file mode 100644 index 00000000..59ede8bc --- /dev/null +++ b/reference/csharp/snippets/Efl.Ui.Win.cs @@ -0,0 +1,6 @@ +var win = new Efl.Ui.Win(Efl.App.AppMain); +win.SetText("Hello World"); +win.SetAutohide(true); +win.VisibilityChangedEvt += + (object sender, Efl.Gfx.IEntityVisibilityChangedEvt_Args e) => {}; +