X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=plugins%2Fdali-sharp%2Fexamples%2Fhello-world.cs;h=3fe2192b042af1c704fb1a0e12e5cd5317eb359f;hp=4f2667cc13526757cc4bf0911c2aeb72e3c43c29;hb=318378db7fbb0bcfb08c3c603f54857d6f5c9639;hpb=665d92f07e3e06e1db65a473c6eb6869dc476c03 diff --git a/plugins/dali-sharp/examples/hello-world.cs b/plugins/dali-sharp/examples/hello-world.cs index 4f2667c..3fe2192 100755 --- a/plugins/dali-sharp/examples/hello-world.cs +++ b/plugins/dali-sharp/examples/hello-world.cs @@ -40,12 +40,12 @@ namespace MyCSharpExample Console.WriteLine("Customized Application Initialize event handler"); _window = Window.Instance; _window.BackgroundColor = Color.White; - _window.Touch += OnWindowTouched; + _window.Touched += OnWindowTouched; // Add a _text label to the stage _text = new TextLabel("Hello Mono World"); _text.ParentOrigin = ParentOrigin.Center; - _text.AnchorPoint = AnchorPoint.Center; + _text.PivotPoint = AnchorPoint.Center; _text.HorizontalAlignment = "CENTER"; _text.PointSize = 32.0f; _text.TextColor = Color.Magenta;