只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2012-06-26 15:42
要等闲阿
阅读(13)
评论(0)
推荐(0)
该文被密码保护。 阅读全文
posted @ 2012-06-26 13:21
要等闲阿
阅读(9)
评论(0)
推荐(0)
摘要:
public bool isPareNull(TreeViewItem CurrItem) { bool boolPareNote = false; try { if (CurrItem.Parent != null) boolPareNote = true; } catch (Exception) { t... 阅读全文
posted @ 2012-06-26 11:07
要等闲阿
阅读(294)
评论(0)
推荐(0)
摘要:
ComboBoxItem conboxitem = new ComboBoxItem(); conboxitem.Style = App.Current.Resources["ComboBoxItemStyle1"] as Style; conboxitem.Content = string.Format("{0}年", DateTime.Now.Year - i); conboxitem.Tag = DateTime.Now.Year - i; this.cboxYear... 阅读全文
posted @ 2012-06-26 11:01
要等闲阿
阅读(190)
评论(0)
推荐(0)
该文被密码保护。 阅读全文
posted @ 2012-06-26 10:56
要等闲阿
阅读(1)
评论(0)
推荐(0)
该文被密码保护。 阅读全文
posted @ 2012-06-26 10:33
要等闲阿
阅读(1)
评论(0)
推荐(0)
摘要:
第一种方法:DateTime d = new DateTime(2009, 2, 8); System.Globalization.Calendar c = new System.Globalization.GregorianCalendar(); int daysInAugust = c.GetDaysInMonth(d.Year, d.Month); // 31 MessageBox.Show(daysInAugust.ToString());第二种方法:public int GetDays(int year, int m... 阅读全文
posted @ 2012-06-26 10:09
要等闲阿
阅读(536)
评论(1)
推荐(0)