[XamlBuild] Remove the reference of Tizen.NUI.XamlBuild in NUITizenGallery
[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         private void MenuItem1Clicked(object sender, ClickedEventArgs args)
38         {
39             this.Dismiss();
40         }
41
42         private void MenuItem2Clicked(object sender, ClickedEventArgs args)
43         {
44             this.Dismiss();
45         }
46
47         private void MenuItem3Clicked(object sender, ClickedEventArgs args)
48         {
49             this.Dismiss();
50         }
51
52         private void MenuItem4Clicked(object sender, ClickedEventArgs args)
53         {
54             this.Dismiss();
55         }
56     }
57 }