wxr
2020-01-10 1a4b95a7ebef71838bd3eda2c22056bbf0db65ec
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
using UIKit;
using Foundation;
using Shared.IO;
using System;
using CoreGraphics;
 
namespace Shared
{
    /// <summary>
    /// Button 按键
    /// </summary>
    public class Button : View
    {
        MyButton iosButton
        { 
            get 
            { 
                return uiView as MyButton;
            }
            set 
            {  
                uiView = value;
            }
        }
 
        /// <summary>
        /// Initializes a new instance of the <see cref="Shared.Button"/> class.
        /// </summary>
        public Button()
        {
            iosButton = new MyButton(this) { };
            iosButton.TitleLabel.Font = UIFont.FromName(FontName, Application.FontSize);
        }
 
        byte[] imageBytes;
        public byte[] ImageBytes {
            get {
                return imageBytes;
            }
            set {
                imageBytes = value;
                IsSelected = isSelected;
            }
        } 
 
        int textID;
        /// <summary>
        /// 根据ID获取对应的备注
        /// </summary>
        /// <value>The text I.</value>
        public int TextID
        {
            get
            {
                return textID;
            }
            set
            {
                textID = value;
                Text = Language.StringByID(TextID);
            }
        }
 
        /// <summary>
        /// 文本
        /// </summary>
        /// <value>The text.</value>
        public string Text
        {
            get
            {
                return iosButton.Title(UIKit.UIControlState.Normal);
            }
            set
            {
 
                iosButton.SetTitle(value, UIKit.UIControlState.Normal);
            }
        }
 
        /// <summary>
        /// 字体名称
        /// </summary>
        /// <value>The name of the font.</value>
        public string FontName{
            get{
                return iosButton.TitleLabel.Font.Name;
            }
            set{
                iosButton.TitleLabel.Font = UIFont.FromName(value, iosButton.Font.PointSize);
            }
        }
 
        public bool IsMoreLines {
            get {
                return iosButton.TitleLabel.Lines != 1 ? true : false;
            }
            set {
                //IsMoreLines = value;
                iosButton.TitleLabel.Lines = value ? 0 : 1;
            }
        }
 
        /// <summary>
        /// 是否显示粗体
        /// </summary>
        bool isBold;
        public bool IsBold
        {
            get
            {
                return isBold;
            }
            set
            {
                isBold = value;
                if (isBold)
                {
                    iosButton.TitleLabel.Font = UIFont.FromName("Helvetica-Bold", mTextSize);
                }
                else
                {
                    iosButton.TitleLabel.Font = UIFont.FromName("Helvetica", mTextSize);
                }
            }
        }
 
        /// <summary>
        /// 获取字体长度
        /// </summary>
        public int GetTextWidth()
        {
            int textWidth = 0;
            CGSize fontSize = this.Text.StringSize(iosButton.TitleLabel.Font);
            textWidth = (int)fontSize.Width;
 
            return textWidth;
        }
 
        /// <summary>
        /// 创新需要创新的信息
        /// </summary>
        public override void Refresh()
        {
            base.Refresh();
            IsSelected = isSelected;
        }
 
        float mTextSize = Application.FontSize;
        /// <summary>
        /// 文字大小,默认12
        /// </summary>
        /// <value>The size of the text.</value>
        public float TextSize
        {
            get
            {
                return (float)iosButton.TitleLabel.Font.PointSize;
            }
            set
            {
                mTextSize = value;
                iosButton.TitleLabel.Font = UIFont.FromName(FontName, value);
            }
        }
 
 
        uint textColor=0xFFFFFFFF;
        /// <summary>
        /// 文字颜色
        /// </summary>
        /// <value>The color of the text.</value>
        public uint TextColor
        {
            get
            {
                return textColor;
            }
            set
            {
                textColor = value;
                if (IsSelected)
                {
                    return;
                }
                byte r, g, b, a;
                r = (byte)(textColor / 256 / 256 % 256);
                g = (byte)(textColor / 256 % 256);
                b = (byte)(textColor % 256);
                a = (byte)(textColor / 256 / 256 / 256 % 256);
                iosButton.SetTitleColor(UIKit.UIColor.FromRGBA(r, g, b, a), UIControlState.Normal);
            }
        }
 
        uint selecteTextColor = 0xFFFFFFFF;
        /// <summary>
        /// 文字颜色
        /// </summary>
        /// <value>The color of the text.</value>
        public uint SelectedTextColor
        {
            get
            {
                return selecteTextColor;
            }
            set
            {
                selecteTextColor = value;
                if (!IsSelected)
                {
                    return;
                }
                byte r, g, b, a;
                r = (byte)(selecteTextColor / 256 / 256 % 256);
                g = (byte)(selecteTextColor / 256 % 256);
                b = (byte)(selecteTextColor % 256);
                a = (byte)(selecteTextColor / 256 / 256 / 256 % 256);
 
                iosButton.SetTitleColor(UIKit.UIColor.FromRGBA(r, g, b, a), UIControlState.Normal);
            }
        }
 
        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
            {
                try
                {
                    isSelected = value;
                    if (!IsCanRefresh)
                    {
                        return;
                    }
                    if (isSelected)
                    {
                        if (null == SelectedImagePath)
                        {
                            byte r, g, b, a;
                            r = (byte)(SelectedBackgroundColor / 256 / 256 % 256);
                            g = (byte)(SelectedBackgroundColor / 256 % 256);
                            b = (byte)(SelectedBackgroundColor % 256);
                            a = (byte)(SelectedBackgroundColor / 256 / 256 / 256 % 256);
                            iosButton.BackgroundColor = UIKit.UIColor.FromRGBA(r, g, b, a);
                        }
                        else
                        {
                            iosButton.SetBackgroundImage(UIImage.FromFile(FileUtils.GetImageFilePath(SelectedImagePath)), UIControlState.Normal);
                        }
                        SelectedTextColor = selecteTextColor;
                    }
                    else
                    {
                        if (imageBytes != null)
                        {
                            iosButton.SetBackgroundImage(UIImage.LoadFromData(NSData.FromArray(imageBytes)), UIControlState.Normal);
                            return;
                        }
                        if (null == UnSelectedImagePath)
                        {
                            byte r, g, b, a;
                            r = (byte)(BackgroundColor / 256 / 256 % 256);
                            g = (byte)(BackgroundColor / 256 % 256);
                            b = (byte)(BackgroundColor % 256);
                            a = (byte)(BackgroundColor / 256 / 256 / 256 % 256);
                            iosButton.BackgroundColor = UIKit.UIColor.FromRGBA(r, g, b, a);
                        }
                        else
                        {
                            iosButton.SetBackgroundImage(UIImage.LoadFromData(NSData.FromFile(FileUtils.GetImageFilePath(UnSelectedImagePath))), UIControlState.Normal);
                        }
                        TextColor = textColor;
                    }
                }
                catch
                {
                }
            }
        }
 
 
        TextAlignment textAlignment = TextAlignment.Center;
        /// <summary>
        ///  文字对齐方式
        /// </summary>
        /// <param name="horizontalAlignment">Horizontal alignment.</param>
        /// <param name="verticalAlignment">Vertical alignment.</param>
        public TextAlignment TextAlignment
        {
            get
            {
                return textAlignment;
            }
            set
            {
                textAlignment = value;
                switch (value)
                {
                    case TextAlignment.TopLeft:
                        iosButton.TitleLabel.TextAlignment = UITextAlignment.Left;
                        iosButton.VerticalAlignment = UIKit.UIControlContentVerticalAlignment.Top;
                        iosButton.HorizontalAlignment = UIKit.UIControlContentHorizontalAlignment.Left;
                        break;
                    case TextAlignment.TopCenter:
                        iosButton.TitleLabel.TextAlignment = UITextAlignment.Center;
                        iosButton.VerticalAlignment = UIKit.UIControlContentVerticalAlignment.Top;
                        iosButton.HorizontalAlignment = UIKit.UIControlContentHorizontalAlignment.Center;
                        break;
                    case TextAlignment.TopRight:
                        iosButton.TitleLabel.TextAlignment = UITextAlignment.Right;
                        iosButton.VerticalAlignment = UIKit.UIControlContentVerticalAlignment.Top;
                        iosButton.HorizontalAlignment = UIKit.UIControlContentHorizontalAlignment.Right;
                        break;
                    case TextAlignment.CenterLeft:
                        iosButton.TitleLabel.TextAlignment = UITextAlignment.Left;
                        iosButton.VerticalAlignment = UIKit.UIControlContentVerticalAlignment.Center;
                        iosButton.HorizontalAlignment = UIKit.UIControlContentHorizontalAlignment.Left;
                        break;
                    case TextAlignment.Center:
                        iosButton.TitleLabel.TextAlignment = UITextAlignment.Center;
                        iosButton.VerticalAlignment = UIKit.UIControlContentVerticalAlignment.Center;
                        iosButton.HorizontalAlignment = UIKit.UIControlContentHorizontalAlignment.Center;
                        break;
                    case TextAlignment.CenterRight:
                        iosButton.TitleLabel.TextAlignment = UITextAlignment.Right;
                        iosButton.VerticalAlignment = UIKit.UIControlContentVerticalAlignment.Center;
                        iosButton.HorizontalAlignment = UIKit.UIControlContentHorizontalAlignment.Right;
                        break;
                    case TextAlignment.BottomLeft:
                        iosButton.TitleLabel.TextAlignment = UITextAlignment.Left;
                        iosButton.VerticalAlignment = UIKit.UIControlContentVerticalAlignment.Bottom;
                        iosButton.HorizontalAlignment = UIKit.UIControlContentHorizontalAlignment.Left;
                        break;
                    case TextAlignment.BottomCenter:
                        iosButton.TitleLabel.TextAlignment = UITextAlignment.Center;
                        iosButton.VerticalAlignment = UIKit.UIControlContentVerticalAlignment.Bottom;
                        iosButton.HorizontalAlignment = UIKit.UIControlContentHorizontalAlignment.Center;
                        break;
                    case TextAlignment.BottomRight:
                        iosButton.TitleLabel.TextAlignment = UITextAlignment.Right;
                        iosButton.VerticalAlignment = UIKit.UIControlContentVerticalAlignment.Bottom;
                        iosButton.HorizontalAlignment = UIKit.UIControlContentHorizontalAlignment.Right;
                        break;
                }
            }
        }
 
 
 
        string selectedImagePath;
        /// <summary>
        /// 选择时背景图路径
        /// </summary>
        /// <value>The selected image path.</value>
        public string SelectedImagePath
        {
            get
            {
                return selectedImagePath;
            }
            set
            {
                selectedImagePath = value;
                IsSelected = IsSelected;
            }
        }
 
        string unSelectedImagePath;
        /// <summary>
        /// 非选中状态的背景图路径
        /// </summary>
        /// <value>The un selected image path.</value>
        public string UnSelectedImagePath
        {
            get
            {
                return unSelectedImagePath;
            }
            set
            {
                unSelectedImagePath = value;
                IsSelected = IsSelected;
            }
        }
 
        /// <summary>
        /// 内边距
        /// </summary>
        /// <value>The padding.</value>
        public override Padding Padding
        {
            get
            {
                return new Padding((int)iosButton.ContentEdgeInsets.Top, (int)iosButton.ContentEdgeInsets.Left, (int)iosButton.ContentEdgeInsets.Bottom, (int)iosButton.ContentEdgeInsets.Right);
            }
            set
            {
                iosButton.ContentEdgeInsets = new UIEdgeInsets(value.Top, value.Left, value.Bottom, value.Right);
            }
        }
 
        /// <summary>
        /// 是否使用点击
        /// </summary>
        /// <value><c>true</c> if enable; otherwise, <c>false</c>.</value>
        public override bool Enable
        {
            get
            {
                return iosButton.Enabled;
            }
            set
            {
                iosButton.Enabled = value;
            }
        }
 
        /// <summary>
        /// 选择时背景颜色
        /// </summary>
        /// <value>The color of the text.</value>
        public uint SelectedBackgroundColor
        {
            get;
            set;
        }
 
        class MyButton : UIKit.UIButton
        {
            [Weak] View view; 
            public MyButton(View view)
            {
                this.view = view;
                ContentEdgeInsets = new UIEdgeInsets(3, 3, 3, 3);
                TitleLabel.LineBreakMode = UILineBreakMode.TailTruncation;
            }
 
            /// <summary>
            /// 点击开始
            /// </summary>
            /// <param name="touches">Touches.</param>
            /// <param name="evt">Evt.</param>
            public override void TouchesBegan(NSSet touches, UIEvent evt)
            {
                view?.TouchEvent(EventActions.Down,(touches.AnyObject as UITouch).LocationInView(this));
            }
            /// <summary>
            ///  移动
            /// </summary>
            /// <param name="touches">Touches.</param>
            /// <param name="evt">Evt.</param>
            public override void TouchesMoved(NSSet touches, UIEvent evt)
            {
                view?.TouchEvent(EventActions.Move,(touches.AnyObject as UITouch).LocationInView(this));
            }
 
            /// <summary>
            /// 点击弹起
            /// </summary>
            /// <param name="touches">Touches.</param>
            /// <param name="evt">Evt.</param>
            public override void TouchesEnded(NSSet touches, UIEvent evt)
            {
                view?.TouchEvent(EventActions.Up, (touches.AnyObject as UITouch).LocationInView(this));
            }
 
            public override void TouchesCancelled(NSSet touches, UIEvent evt)
            {
                view?.TouchEvent(EventActions.Cancel, (touches.AnyObject as UITouch).LocationInView(this));
            }
 
            public override UILineBreakMode LineBreakMode { get => base.LineBreakMode; set => base.LineBreakMode = value; }
 
            public override UILabel TitleLabel => base.TitleLabel;
 
            //int isMoreLines
 
        }
    }
}