摘要: 在Window中设置 位于界面中心 1 WindowStartupLocation="CenterScreen" 位于最前面 1 Topmost="True" 阅读全文
posted @ 2020-11-24 11:12 llkj 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2020-11-24 10:31 llkj 阅读(319) 评论(0) 推荐(0) 编辑