From 5b0a842cbdc5dc54e45e5d350d3516d0cdd59199 Mon Sep 17 00:00:00 2001 From: lss <lsc@hdlchina.com.cn> Date: 星期一, 25 四月 2022 14:50:07 +0800 Subject: [PATCH] 2022-4-25 --- ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/ClickButtonControls/NormalClickButton.cs | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/ClickButtonControls/NormalClickButton.cs b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/ClickButtonControls/NormalClickButton.cs new file mode 100644 index 0000000..a4653fc --- /dev/null +++ b/ZigbeeApp/Shared/Phone/UserCenter/CommonBase/Controls/ClickButtonControls/NormalClickButton.cs @@ -0,0 +1,23 @@ +锘縰sing System; +using System.Collections.Generic; +using System.Text; + +namespace Shared.Phone.UserCenter +{ + /// <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); + } + } +} -- Gitblit v1.8.0