1 Star 0 Fork 21

asokayang / 报表模板库

forked from 葡萄城 / 报表模板库 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ReportStudyForm.cs 1000 Bytes
一键复制 编辑 原始数据 按行查看 历史
葡萄城 提交于 2019-05-22 17:55 . 提交项目
using GrapecityReportsLibrary.Controls;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace GrapecityReportsLibrary
{
public partial class ReportStudyForm : Form
{
public Report CurrentReport { get; set; }
public ReportStudyForm()
{
InitializeComponent();
}
private void ReportStudyForm_Load(object sender, EventArgs e)
{
//CommonFunctions.AddARDemoOperation(EventTypes.开始查看教程, this.CurrentReport.Name);
this.Text = this.CurrentReport.Name;
this.webBrowser1.Url = new Uri(this.CurrentReport.ReferURL);
}
private void ReportStudyForm_FormClosing(object sender, FormClosingEventArgs e)
{
//CommonFunctions.AddARDemoOperation(EventTypes.结束查看教程, this.CurrentReport.Name);
}
}
}
C#
1
https://gitee.com/asokayang/ReportLibrary.git
git@gitee.com:asokayang/ReportLibrary.git
asokayang
ReportLibrary
报表模板库
master

搜索帮助