X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=plugins%2Fdali-swig%2Fexamples%2Fhello-world.cs;h=28fd1ddc14aa5d854d419dca4429caa9ae74d8a1;hb=0b656e1b343a93e2c9a92f50e84e3b30575a494d;hp=c2caeb524b88225328d220a6193ffe8798fcc424;hpb=8318ee011aae9d2a56018ea7da82b601e8250279;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/plugins/dali-swig/examples/hello-world.cs b/plugins/dali-swig/examples/hello-world.cs index c2caeb5..28fd1dd 100755 --- a/plugins/dali-swig/examples/hello-world.cs +++ b/plugins/dali-swig/examples/hello-world.cs @@ -40,7 +40,7 @@ namespace MyCSharpExample public Example(Dali.Application application) { _application = application; - _application.Initialized += new Dali.AUIApplicationInitEventHandler(Initialize); + _application.Initialized += Initialize; } public void Initialize(object source, AUIApplicationInitEventArgs e) @@ -49,7 +49,7 @@ namespace MyCSharpExample Stage stage = Stage.GetCurrent(); stage.BackgroundColor = NDalic.WHITE; - stage.Touched += new Dali.Stage.TouchEventHandler(OnStageTouched); + stage.Touched += OnStageTouched; // Add a _text label to the stage _text = new TextLabel("Hello Mono World"); @@ -89,7 +89,7 @@ namespace MyCSharpExample _animation.AnimateTo(new Property(_text, Actor.Property.ORIENTATION), new Property.Value(new Quaternion( new Radian( new Degree( 0.0f ) ), Vector3.XAXIS )), new AlphaFunction(AlphaFunction.BuiltinFunction.LINEAR), new TimePeriod(0.5f, 0.5f)); // Connect the signal callback for animaiton finished signal - _animation.Finished += new Dali.Animation.FinishedEventHandler(AnimationFinished); + _animation.Finished += AnimationFinished; // Play the _animation _animation.Play();