X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=plugins%2Fdali-swig%2Fexamples%2Fhello-test.cs;h=1f7962db6c1944e00946c93ddd16a87f66ea0bc3;hp=61726aa1c287efdc6613896aa577af533da34292;hb=bc7cb028cf42ff75d7644c278201883ea3426199;hpb=02318dd256a2edbef78a37cd40e153279385cc94 diff --git a/plugins/dali-swig/examples/hello-test.cs b/plugins/dali-swig/examples/hello-test.cs old mode 100755 new mode 100644 index 61726aa..1f7962d --- a/plugins/dali-swig/examples/hello-test.cs +++ b/plugins/dali-swig/examples/hello-test.cs @@ -52,6 +52,14 @@ namespace MyCSharpExample { } + public Example(string stylesheet):base(stylesheet) + { + } + + public Example(string stylesheet, Dali.Application.WINDOW_MODE windowMode):base(stylesheet, windowMode) + { + } + private void Initialize() { // Connect the signal callback for stage touched signal @@ -111,7 +119,9 @@ namespace MyCSharpExample static void Main(string[] args) { Console.WriteLine("Hello mono world."); - Example example = new Example(); + //Example example = new Example(); + //Example example = new Example("stylesheet"); + Example example = new Example("stylesheet", Dali.Application.WINDOW_MODE.TRANSPARENT); example.Run(args); } }