WebBrowser直接写入内容

来源:互联网 发布:mac 怎么下载ps 编辑:程序博客网 时间:2024/06/05 00:41
var  StrStream: TStringStream;  SetNoteStr: string;begin  SetNoteStr :='<iframe src="http://m.weather.com.cn/m/pn12/weather.htm " width="245" height="110" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"></iframe>';  StrStream := TStringStream.Create(SetNoteStr);  WebBrowser1.Navigate('about:blank');  try    StrStream.Position := 0;    (WebBrowser1.Document as IPersistStreamInit).Load(TStreamadapter.Create(StrStream));  finally    StrStream.Free;  end;end;

原创粉丝点击