1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| using System;
| using System.Collections.Generic;
| using System.Text;
|
| namespace Shared.Phone
| {
| /// <summary>
| /// 做成一个普通的单击按钮✩
| /// </summary>
| public class NormalClickButton : ClickButtonCommon
| {
| /// <summary>
| /// 做成一个普通的单击按钮
| /// </summary>
| /// <param name="i_Width">宽度</param>
| /// <param name="i_Height">高度</param>
| /// <param name="real">是否计算真实值</param>
| public NormalClickButton(int i_Width, int i_Height, bool real = false)
| {
| this.InitSize(i_Width, i_Height, real);
| }
| }
| }
|
|