如果要把日期字符串,
例如,写在 TextBox1文字方块 里面的「
2011/04/30
上午
12:00:00
」
转换成 短日期格式(ShortDate。只有
yyyy/MM/dd
的日期格式)。
VB语法 --
FormatDateTime
(TextBox1.Text,
DateFormat.ShortDate
)
C#语法 --
DateTime
strDate =
DateTime.Parse
(TextBox1.Text);
String.Format("{0:yyyy/MM/dd}"
,
strDate);
//==参考数据
http://forums.asp.net/t/314534.aspx/1?FormatDateTime+
//==
http://www.csharp-examples.net/string-format-datetime/
帮自己作一个补充,省得下次自己也忘记。
antdesign 中ProTable 中 onRow用法
前言:antd表格设置了fixed属性后,在设置scroll:x的时候会出现空白间隙。如下图:解决方案: 1.动态计算宽度//动态计算columns width属性(width属性不要加单位px)
countX = (arr) => {
return arr.reduce((cur, next) => {
return cur + (next.wid
// 相对于给定ID控件
android:layout_above 将该控件的底部置于给定ID的控件之上;
android:layout_below 将该控件的底部置于给定ID的控件之下;
android:layout_toLeftOf 将该控件的右边缘与给定ID的控件左边缘对齐;
android:layout_toRightOf 将该控件的左边缘与给定ID的控件右边缘对齐;