摘要:
在Window中设置 位于界面中心 1 WindowStartupLocation="CenterScreen" 位于最前面 1 Topmost="True" 阅读全文
摘要:
1 private int SubstringCount(string str, string a) 2 { 3 int count = 0; 4 if (str.Contains(a)) 5 { 6 string s = str.Replace(a, ""); 7 count = str.Leng 阅读全文