上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 21 下一页
摘要: <asp:GridView ID="AeroDataListGridView" runat="server" AutoGenerateColumns="False" CellPadding="3" ForeColor="#333333" GridLines="None" onrowdatabound="AeroDataListGridView_RowDataBound" AllowPaging="True" onpageindex 阅读全文
posted @ 2013-05-13 15:54 louiskoo 阅读(7216) 评论(0) 推荐(0) 编辑
摘要: 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... 阅读全文
posted @ 2013-05-13 15:32 louiskoo 阅读(12368) 评论(0) 推荐(0) 编辑
摘要: private void RefreashData() { Thread t = new Thread(new ThreadStart(delegate { try { seatDay = SeatAlgorithm.GetSeatTotalDayData(); seatWeek = SeatAlgorithm.GetSeatTotalWeekData(); gr... 阅读全文
posted @ 2013-05-13 10:52 louiskoo 阅读(4156) 评论(0) 推荐(0) 编辑
摘要: public partial class WordArt : UserControl//这是一个艺术字的控件 { //文本属性 private string _text = "WordArt"; public string Caption { get { return _text; } set { _text = value; } } //字体以及大小 private Font _WordArtFont = new Font("宋体", 15);... 阅读全文
posted @ 2013-05-13 10:49 louiskoo 阅读(1928) 评论(0) 推荐(0) 编辑
摘要: 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") ... 阅读全文
posted @ 2013-05-13 10:43 louiskoo 阅读(1854) 评论(0) 推荐(0) 编辑
摘要: series["PixelPointWidth"] = "150"; //定位柱状图的宽度 阅读全文
posted @ 2013-05-05 22:06 louiskoo 阅读(619) 评论(0) 推荐(0) 编辑
摘要: chart1.ChartAreas[0].AxisY.LabelStyle.Format = "0%"; chart1.Series[0].Label = "#VAL{P}"; 阅读全文
posted @ 2013-05-05 20:12 louiskoo 阅读(2376) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Security.Cryptography;using System.IO;namespace tes2{ class Encrypt { #region "定义加密字串变量" private SymmetricAlgorithm mCSP; //声明对称算法变量 private const string CIV = "Mi9l/+7Zujhy12se... 阅读全文
posted @ 2013-04-27 16:36 louiskoo 阅读(2984) 评论(0) 推荐(0) 编辑
摘要: public partial class UserDataGridView : DataGridView { private Image m_Image; public UserDataGridView() { InitializeComponent(); //this.m_Image = Image.FromFile("C:\\BG.jpg"); //this.m_Image = Resources.网格背景; } ///<summary>重写... 阅读全文
posted @ 2013-04-26 16:52 louiskoo 阅读(471) 评论(0) 推荐(0) 编辑
摘要: public partial class UserControl1 : UserControl { private string _text; public string textValue { get { return this._text; } set { this._text = value; textBox1.Text = _text; ... 阅读全文
posted @ 2013-04-26 16:51 louiskoo 阅读(2651) 评论(0) 推荐(1) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 21 下一页