| 1234567891011121314151617181920212223242526272829 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- using HySoft.HYSoftControl.HYSkinForm;
- namespace HySoft.Lecall.SeatFrame
- {
- public partial class AboutForm : SkinForm
- {
- public AboutForm()
- {
- InitializeComponent();
- //由V4.1衍生而来,V4.1版本为标准版需要的坐席客户端
- //此版本因Web框架不同而做的相关调整,
- //V4.1 如:webBrowser_Site.Document.Window.Frames["iframeocx"]
- //V4.2 如:webBrowser_Site.Document.Window.Frames["framehead"].Frames["iframeocx"]
- }
- private void btnOK_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }
|