-
大小: 20KB文件类型: .zip金币: 1下载: 0 次发布日期: 2021-05-04
- 语言: C#
- 标签:
资源简介
C#+SerialPort+Terminal+Rs232+串口+源码.zip
代码片段和文件信息
#region Namespace Inclusions
using System;
using System.Text;
using System.Diagnostics;
using System.IO;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Windows.Forms;
using System.Reflection;
#endregion
namespace SerialPortTerminal
{
public partial class frmAbout : Form
{
private string TempFile = Path.GetTempFileName();
public frmAbout()
{
InitializeComponent();
// Read the about HTML from the assembly
string html = (new StreamReader(Assembly.GetExecutingAssembly().GetManifestResourceStream(“SerialPortTerminal.About.htm“))).ReadToEnd();
// Replace sections with appropriate data
html = html.Replace(“{version}“ Assembly.GetExecutingAssembly().GetName().Version.ToString());
// Save the temp file so the web browser has a target to navigate to
File.WriteAll(TempFile html);
// Show the temp about file
web.Navigate(TempFile);
}
private void web_Navigated(object sender WebBrowserNavigatedEventArgs e)
{
// Since the navigation is complete delete the temp file
File.Delete(TempFile);
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1224 2005-03-23 16:20 SerialPort Terminal\About.cs
文件 2170 2005-03-23 16:21 SerialPort Terminal\About.Designer.cs
文件 1132 2005-03-23 16:26 SerialPort Terminal\About.htm
文件 5647 2005-03-23 16:19 SerialPort Terminal\About.resx
文件 1916 2005-03-23 16:52 SerialPort Terminal\app.config
文件 1078 2005-03-23 15:21 SerialPort Terminal\App.ico
文件 766 2005-03-14 00:05 SerialPort Terminal\Datacomm-105.ico
文件 378 2005-03-13 14:56 SerialPort Terminal\Program.cs
目录 0 2005-03-23 16:52 SerialPort Terminal\Properties\
文件 1283 2005-03-13 14:14 SerialPort Terminal\Properties\AssemblyInfo.cs
文件 3490 2005-03-13 14:15 SerialPort Terminal\Properties\Resources.Designer.cs
文件 5612 2005-03-13 14:14 SerialPort Terminal\Properties\Resources.resx
文件 3877 2005-03-23 16:52 SerialPort Terminal\Properties\Settings.Designer.cs
文件 1140 2005-03-23 16:52 SerialPort Terminal\Properties\Settings.settings
文件 59 2005-03-23 17:00 SerialPort Terminal\Readme.txt
文件 3490 2005-03-23 16:50 SerialPort Terminal\SerialPort Terminal.csproj
文件 173 2005-03-23 16:50 SerialPort Terminal\SerialPort Terminal.csproj.user
文件 10758 2005-03-23 16:59 SerialPort Terminal\Terminal.cs
文件 15021 2005-03-23 16:53 SerialPort Terminal\Terminal.Designer.cs
文件 7563 2005-03-23 16:53 SerialPort Terminal\Terminal.resx
目录 0 2005-03-23 17:01 SerialPort Terminal\
- 上一篇:使用C#Hook实现的屏幕放大镜
- 下一篇:wpf中英文切换
评论
共有 条评论