X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=plugins%2Fdali-sharp%2Fexamples%2Fvisuals-using-custom-view%2Fvisuals-using-custom-view.cs;h=a77417ae24edc6c4e0f87b934f93694d0da8adc3;hb=bfd6c56d4d17e2bf752845693e2df370444a6ebf;hp=8762974811f88dc53d88ef3c44279385a3b87e01;hpb=24ea337df1049251ab2e47c556edc6e8458f9c93;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/plugins/dali-sharp/examples/visuals-using-custom-view/visuals-using-custom-view.cs b/plugins/dali-sharp/examples/visuals-using-custom-view/visuals-using-custom-view.cs index 8762974..a77417a 100755 --- a/plugins/dali-sharp/examples/visuals-using-custom-view/visuals-using-custom-view.cs +++ b/plugins/dali-sharp/examples/visuals-using-custom-view/visuals-using-custom-view.cs @@ -30,8 +30,8 @@ namespace VisualsUsingCustomView private void Initialize(object source, NUIApplicationInitEventArgs e) { - Stage stage = Stage.Instance; - stage.BackgroundColor = Color.White; + Window window = Window.Instance; + window.BackgroundColor = Color.White; TableView contentLayout = new TableView(14, 1); contentLayout.Name = "ContentLayout"; @@ -40,7 +40,7 @@ namespace VisualsUsingCustomView contentLayout.SetCellPadding(new Size2D(5, 5)); contentLayout.BackgroundColor = new Color(0.949f, 0.949f, 0.949f, 1.0f); - stage.GetDefaultLayer().Add(contentLayout); + window.GetDefaultLayer().Add(contentLayout); TextLabel title = new TextLabel("Contacts List with Visuals"); title.Name = "Title";