黄学彪
2020-12-17 6c0c799c1f5da2d215ec8d9df9b92b3d1948dc14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
using System;
using HDL_ON.UI.CSS;
using Shared;
 
namespace HDL_ON.UI
{
    /// <summary>
    /// 信息中心的菜单按钮
    /// 宽高都是86
    /// </summary>
    public class MenuButton : FrameLayout
    {
        /// <summary>
        /// 
        /// </summary>
        public Button ImageButton;
        /// <summary>
        /// 
        /// </summary>
        public Button TextButton;
        /// <summary>
        /// 
        /// </summary>
        public Action SelectAction;
 
        /// <summary>
        /// 
        /// </summary>
        public MenuButton()
        {
            Height = Application.GetRealWidth(86);
            Width = Application.GetRealWidth(86);
            Show();
        }
 
        /// <summary>
        /// 
        /// </summary>
        void Show()
        {
            ImageButton = new Button()
            {
                Height = Application.GetRealWidth(60),
                Width = Application.GetRealWidth(60),
                Gravity = Gravity.CenterHorizontal
            };
            this.AddChidren(ImageButton);
 
            TextButton = new Button()
            {
                Y = Application.GetRealWidth(68),
                Height = this.Height  - Application.GetRealWidth(68),
                Width = Application.GetRealWidth(86),
                TextColor = CSS_Color.PromptingColor1,
                SelectedTextColor = CSS_Color.FirstLevelTitleColor,
                TextSize = CSS_FontSize.PromptFontSize_FirstLevel,
                TextAlignment = TextAlignment.Center
            };
            this.AddChidren(TextButton);
 
 
            EventHandler<MouseEventArgs> eventHandler = (sender, e) =>
            {
                SelectAction?.Invoke();
            };
 
            ImageButton.MouseUpEventHandler = eventHandler;
            TextButton.MouseUpEventHandler = eventHandler;
            this.MouseUpEventHandler = eventHandler;
        }
 
        /// <summary>
        /// 
        /// </summary>
        bool isSelected;
        /// <summary>
        /// 选中状态
        /// </summary>
        /// <value><c>true</c> if this instance is selected; otherwise, <c>false</c>.</value>
        public bool IsSelected
        {
            get
            {
                return isSelected;
            }
            set
            {
                isSelected = value;
                ImageButton.IsSelected = isSelected;
                TextButton.IsSelected = isSelected;
 
            }
        }
    }
}