mono: Initial snippet example to use with DocFX

eolian_mono now allows external examples to be embedded in the cs files, which
then appear in the DocFX pages.
This new folder is the proposed place to put all these external examples.
This commit is contained in:
Xavi Artigas 2019-04-11 16:21:09 +02:00
parent 169f569af6
commit 5f436d2874
1 changed files with 6 additions and 0 deletions

View File

@ -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) => {};