摘要:
<asp:GridView ID="AeroDataListGridView" runat="server" AutoGenerateColumns="False" CellPadding="3" ForeColor="#333333" GridLines="None" onrowdatabound="AeroDataListGridView_RowDataBound" AllowPaging="True" onpageindex 阅读全文
摘要:
public class SeatChoosenEventArgs : EventArgs { public 呼叫中心工号核对表Entity SeatChoosen; } public partial class UCSeatIcon : UserControl{ private 呼叫中心工号核对表Entity _entity; public event EventHandler<SeatChoosenEventArgs> SeatChoosenEvent; private void pictureBox1_Click(object sende... 阅读全文
摘要:
private void RefreashData() { Thread t = new Thread(new ThreadStart(delegate { try { seatDay = SeatAlgorithm.GetSeatTotalDayData(); seatWeek = SeatAlgorithm.GetSeatTotalWeekData(); gr... 阅读全文
摘要:
public partial class WordArt : UserControl//这是一个艺术字的控件 { //文本属性 private string _text = "WordArt"; public string Caption { get { return _text; } set { _text = value; } } //字体以及大小 private Font _WordArtFont = new Font("宋体", 15);... 阅读全文
摘要:
internal class ChartStyle { internal static void RemoveZeroDataPointLabel(Chart chart) { foreach (Series series in chart.Series) { foreach (DataPoint dp in series.Points) { if (dp.YValues[0].ToString() == "0") ... 阅读全文