소스 검색

11

样式分支
fyf 2 년 전
부모
커밋
ae699a04a0
1개의 변경된 파일19개의 추가작업 그리고 0개의 파일을 삭제
  1. +19
    -0
      BPASmartClient.ScreenLib/Helper/Main.cs

+ 19
- 0
BPASmartClient.ScreenLib/Helper/Main.cs 파일 보기

@@ -259,6 +259,25 @@ namespace BPASmartClient.ScreenLib
{
}
}
else
{
string text = System.IO.File.ReadAllText(name);
if (text.Replace("\r\n", "") != html)
{
try
{
using (StreamWriter sw = new StreamWriter(name, false, System.Text.Encoding.GetEncoding("UTF-8"))) //保存地址
{
sw.WriteLine(html);
sw.Flush();
sw.Close();
}
}
catch
{
}
}
}
view2.Source = new Uri(name);
}
/// <summary>


불러오는 중...
취소
저장