WPF开发工具中有很多功能的实现可以帮助我们轻松简便的开发出想要的界面。在这里我们将会了解到有关WPF生成文件的方法。#t#
WPF生成文件代码示例:
- using (Stream stream =
Application.GetContentStream
(new Uri(reportName + ".rdlc",
UriKind.RelativeOrAbsolute)).Stream) - {
- byte[] bytes = new
byte[stream.Length]; - stream.Read(bytes, 0,
bytes.Length); - // 设置当前流的位置为流的开始
- stream.Seek(0, SeekOrigin.Begin);
- FileStream fs = new
FileStream(reportPath,
FileMode.Create); - BinaryWriter bw =
new BinaryWriter(fs); - bw.Write(bytes);
- bw.Close();
- fs.Close();
- }
WPF生成文件相关代码示例就为大家介绍这里。