old mode 100755
new mode 100644
| | |
| | | /// </summary>
|
| | | public string Text
|
| | | {
|
| | | get { return txtInput.Text; }
|
| | | get { return txtInput.Text.Trim(); }
|
| | | set { txtInput.Text = value; }
|
| | | }
|
| | | /// <summary>
|
| | |
| | | }
|
| | |
|
| | | #endregion
|
| | |
|
| | | #region ■ 添加底线___________________________
|
| | |
|
| | | /// <summary>
|
| | | /// <para>添加底线(如果左边有图标,则先添加图标,再添加底线)</para>
|
| | | /// <para>它的长度为:当前控件宽度-左右固定间距-左边图片宽度(如果有)-右边的偏移量</para>
|
| | | /// </summary>
|
| | | public override NormalViewControl AddBottomLine()
|
| | | {
|
| | | var btnLine = base.AddBottomLine();
|
| | | //联动线的状态
|
| | | txtInput.btnLine = btnLine;
|
| | |
|
| | | return btnLine;
|
| | | }
|
| | |
|
| | | #endregion
|
| | | }
|
| | | }
|