摘要:
public static string ConvertHtml2String(string html) { html = html.Trim(); html = Regex.Replace(html, "(\\<script(.+?)\\</script\\>)|(\\<style(.+?)\\< 阅读全文
摘要:
public T GetChildOfType<T>(DependencyObject depObj) where T : DependencyObject { if (depObj == null) return null; for (int i = 0; i < VisualTreeHelper 阅读全文