[NUI] integration from DevelNUI to master (#3309)
[platform/core/csapi/tizenfx.git] / test / NUITizenGallery / Examples / MenuTest / MenuTestMenu.xaml.cs
1 /*
2  * Copyright(c) 2021 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 Tizen.NUI;
18 using Tizen.NUI.BaseComponents;
19 using Tizen.NUI.Components;
20
21 namespace NUITizenGallery
22 {
23     public partial class MenuTestMenu : Menu
24     {
25         public MenuTestMenu()
26         {
27             InitializeComponent();
28
29             // FIXME: For now, menuItem1, 2, 3, 4 handles are not found by FindByName.
30             /*
31             menuItem1.Clicked += MenuItem1Clicked;
32             menuItem2.Clicked += MenuItem2Clicked;
33             menuItem3.Clicked += MenuItem3Clicked;
34             menuItem4.Clicked += MenuItem4Clicked;
35             */
36         }
37
38         private void MenuItem1Clicked(object sender, ClickedEventArgs args)
39         {
40             this.Dismiss();
41         }
42
43         private void MenuItem2Clicked(object sender, ClickedEventArgs args)
44         {
45             this.Dismiss();
46         }
47
48         private void MenuItem3Clicked(object sender, ClickedEventArgs args)
49         {
50             this.Dismiss();
51         }
52
53         private void MenuItem4Clicked(object sender, ClickedEventArgs args)
54         {
55             this.Dismiss();
56         }
57     }
58 }