C# dev gridcontrol “时间”字符串格式化
public void FormateDate(ref DataSet ds, string colName)
{
if (ds != null && ds.Tables.Count > 0 && ds.Tables[0].Rows.Count > 0)
{
foreach (DataRow dr in ds.Tables[0].Row
C# DAL添加数据的两种处理方式
方式一:
1 ///
2 /// 增加一条数据
3 ///
4 public void Add(Maticsoft.Model.TAB_BPBJ model)
5 {
6 Stri...
开发Google Material Design风格的WPF程序
原文:开发Google Material Design风格的WPF程序
今天在网上看到了一个Material Design风格的WPF皮肤,看上去还是挺不错的
这个项目是开源的,感兴趣的朋友可以下载试下: https://github.com/ButchersBoy/MaterialDesignInXamlToolkit。