using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
using System.Drawing;
using System.Data;
using FastReport;
using FastReport.Data;
using FastReport.Dialog;
using FastReport.Barcode;
using FastReport.Table;
using FastReport.Utils;
namespace FastReport
{
public class ReportScript
{
private void Cell4_MouseEnter(object sender, EventArgs e)
{
TableCell cell = sender as TableCell;
cell.Fill = new GlassFill(Color.DarkOrange, 0.2f, false);
cell.Page.Refresh();
}
private void Cell4_MouseLeave(object sender, EventArgs e)
{
TableCell cell = sender as TableCell;
cell.Fill = new SolidFill(Color.FromArgb(77,77,77));
cell.Page.Refresh();
}
}
}
|