[NUI] Add xaml and xamlbing testcases
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Tests / Tizen.NUI.Devel.Tests / testcase / public / Xaml / TotalSample / ClockView.xaml.cs
1 /*
2  * Copyright (c) 2017 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17 using System;
18 using System.Collections.Generic;
19 using System.ComponentModel;
20 using System.Globalization;
21 using Tizen.NUI;
22 using Tizen.NUI.BaseComponents;
23 using Tizen.NUI.Binding;
24 using Tizen.NUI.Components;
25 using Tizen.NUI.Xaml;
26
27 [assembly: global::Tizen.NUI.Xaml.XamlResourceIdAttribute("Tizen.NUI.Devel.Tests.testcase.public.Xaml.TotalSample.ClockView.xaml", "testcase.public.Xaml.TotalSample.ClockView.xaml", typeof(global::Tizen.NUI.Devel.Tests.ClockView))]
28
29 namespace Tizen.NUI.Devel.Tests
30 {
31     class ClockViewModel : INotifyPropertyChanged
32     {
33         DateTime dateTime;
34
35         public event PropertyChangedEventHandler PropertyChanged;
36
37         public ClockViewModel()
38         {
39             this.DateTime = DateTime.Now;
40
41             //Device.StartTimer(TimeSpan.FromSeconds(1), () =>
42             //{
43             //    this.DateTime = DateTime.Now;
44             //    return true;
45             //});
46         }
47
48         public DateTime DateTime
49         {
50             set
51             {
52                 if (dateTime != value)
53                 {
54                     dateTime = value;
55
56                     if (PropertyChanged != null)
57                     {
58                         PropertyChanged(this, new PropertyChangedEventArgs("DateTime"));
59                     }
60                 }
61             }
62             get
63             {
64                 return dateTime;
65             }
66         }
67     }
68
69     [Tizen.NUI.Xaml.XamlFilePathAttribute("testcase\\public\\Xaml\\TotalSample\\ClockView.xaml")]
70     [Tizen.NUI.Xaml.XamlCompilationAttribute(global::Tizen.NUI.Xaml.XamlCompilationOptions.Compile)]
71     public partial class ClockView : View
72     {
73
74         public ClockView()
75         {
76             global::Tizen.NUI.Xaml.Extensions.LoadFromXaml(this, typeof(ClockView));
77         }
78     }
79 }