[NUI][NUI.Devel.Tests] Fix build errors of NUI.Devel following latest codes.
[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 namespace Tizen.NUI.Devel.Tests
28 {
29     class ClockViewModel : INotifyPropertyChanged
30     {
31         DateTime dateTime;
32
33         public event PropertyChangedEventHandler PropertyChanged;
34
35         public ClockViewModel()
36         {
37             this.DateTime = DateTime.Now;
38
39             //Device.StartTimer(TimeSpan.FromSeconds(1), () =>
40             //{
41             //    this.DateTime = DateTime.Now;
42             //    return true;
43             //});
44         }
45
46         public DateTime DateTime
47         {
48             set
49             {
50                 if (dateTime != value)
51                 {
52                     dateTime = value;
53
54                     if (PropertyChanged != null)
55                     {
56                         PropertyChanged(this, new PropertyChangedEventArgs("DateTime"));
57                     }
58                 }
59             }
60             get
61             {
62                 return dateTime;
63             }
64         }
65     }
66
67     public partial class ClockView : View
68     {
69
70         public ClockView()
71         {
72             global::Tizen.NUI.Xaml.Extensions.LoadFromXaml(this, typeof(ClockView));
73         }
74     }
75 }