本文整理汇总了C#中System.Windows.Forms.MonthCalendar类的典型用法代码示例。如果您正苦于以下问题:C# MonthCalendar类的具体用法?C# MonthCalendar怎么用?C# MonthCalendar使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
MonthCalendar类属于System.Windows.Forms命名空间,在下文中一共展示了MonthCalendar类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: InitializeComponent
private void InitializeComponent()
{
this.monthCalendar = new System.Windows.Forms.MonthCalendar();
this.btnMakeReport = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// monthCalendar
//
this.monthCalendar.Location = new System.Drawing.Point(16, 0);
this.monthCalendar.Name = "monthCalendar";
this.monthCalendar.ShowTodayCircle = false;
this.monthCalendar.TabIndex = 0;
//
// btnMakeReport
//
this.btnMakeReport.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btnMakeReport.Location = new System.Drawing.Point(72, 168);
this.btnMakeReport.Name = "btnMakeReport";
this.btnMakeReport.Size = new System.Drawing.Size(88, 32);
this.btnMakeReport.TabIndex = 1;
this.btnMakeReport.Text = "Make Report";
//
// frmDailyReport
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(226, 215);
this.Controls.Add(this.btnMakeReport);
this.Controls.Add(this.monthCalendar);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Name = "frmDailyReport";
this.Text = "Daily Report";
this.ResumeLayout(false);
}
示例2: ExtDatetimePicker
public ExtDatetimePicker()
{
InitializeComponent();
_mc = new MonthCalendar{MaxSelectionCount = 1};
_pch = new PopupControlHost(_mc);
InitEvent();
InitProperty();
}
示例3: MonthCalendarInitialization
/// <summary>
/// Создает контроллер MonthCalendar с заданными характеристиками
/// </summary>
private void MonthCalendarInitialization()
{
this.monthCalendar = new MonthCalendar();
int X = (this.ClientSize.Width - this.monthCalendar.Width) / 2;
int Y = (this.ClientSize.Height - this.monthCalendar.Height) / 2;
this.monthCalendar.Location = new Point(X, Y);
this.monthCalendar.ShowToday = true;
this.monthCalendar.ShowTodayCircle = false;
this.monthCalendar.ShowWeekNumbers = true;
this.Controls.Add(this.monthCalendar);
}
示例4: Init
public void Init()
{
db = new DataBase.DataBaseManagement("VetoPTArentir");
// suppression de tout les objets du panel
ModifyAppointementPanel.Controls.Clear();
// titre
title = new Label();
title.Size = new Size(500, 30);
title.Font = new Font("Arial", 20);
title.Location = new Point(170, 20);
title.Text = "Modifier rendez-vous";
ModifyAppointementPanel.Controls.Add(title);
// nom
client = new ComboBox();
client.Size = new Size(150, 30);
client.Location = new Point(205, 100);
client.Text = "Nom";
client.SelectedIndexChanged += new EventHandler(Client_SelectedIndexChanged);
ModifyAppointementPanel.Controls.Add(client);
// animal
animal = new ComboBox();
animal.Size = new Size(150, 30);
animal.Location = new Point(205, 130);
animal.Text = "Animal";
animal.SelectedIndexChanged += new EventHandler(Animal_SelectedIndexChanged);
ModifyAppointementPanel.Controls.Add(animal);
// Date
calendar = new MonthCalendar();
calendar.Location = new Point(165, 170);
ModifyAppointementPanel.Controls.Add(calendar);
// raison
reason = new TextBox();
reason.Size = new Size(150, 30);
reason.Location = new Point(205, 350);
reason.Text = "Objet du rendez-vous";
ModifyAppointementPanel.Controls.Add(reason);
// bouton confirmer
confirmButton = new Button();
confirmButton.Size = new Size(100, 30);
confirmButton.Location = new Point(150, 400);
confirmButton.Text = "Confirmer";
ModifyAppointementPanel.Controls.Add(confirmButton);
confirmButton.Click += new EventHandler(confirm_Click);
// bouton annuler
cancelButton = new Button();
cancelButton.Size = new Size(100, 30);
cancelButton.Location = new Point(310, 400);
cancelButton.Text = "Annuler";
ModifyAppointementPanel.Controls.Add(cancelButton);
cancelButton.Click += new EventHandler(cancel_Click);
completeClient();
}
示例5: DateTimeCellEditor
/// <summary>
/// Initializes a new instance of the DateTimeCellEditor class with default settings
/// </summary>
public DateTimeCellEditor() : base()
{
this.calendar = new MonthCalendar();
this.calendar.Location = new System.Drawing.Point(0, 0);
this.calendar.MaxSelectionCount = 1;
this.DropDown.Width = this.calendar.Width + 2;
this.DropDown.Height = this.calendar.Height + 2;
this.DropDown.Control = this.calendar;
base.DropDownStyle = DropDownStyle.DropDownList;
}
示例6: SimDateSelect
//-------------------------------------------------------------------------------------
#region << Constructors >>
public SimDateSelect() : base()
{
this.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
this.panel1 = new System.Windows.Forms.Panel();
this.simLabel1 = new Sim.Controls.SimLabel();
this.simPopupButton1 = new Sim.Controls.SimPopupButton();
this.panelMain = new System.Windows.Forms.Panel();
this.panelMain.SuspendLayout();
this.panel1.SuspendLayout();
//
// monthCalendar1
//
this.monthCalendar1.Dock = System.Windows.Forms.DockStyle.Top;
this.monthCalendar1.ShowToday = false;
this.monthCalendar1.ShowTodayCircle = false;
this.monthCalendar1.MaxSelectionCount = 1;
this.monthCalendar1.DateSelected += new DateRangeEventHandler(monthCalendar1_DateSelected);
//
// simLabel1
//
this.simLabel1.AutoSize = false;
this.simLabel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.simLabel1.Text = DateTime.Now.Date.ToString("dd.MM.yyyy");
//
// simPopupButton1
//
this.simPopupButton1.Dock = System.Windows.Forms.DockStyle.Right;
this.simPopupButton1.Image = global::Sim.Controls.Properties.Resources.OK;
this.simPopupButton1.Size = new System.Drawing.Size(21, 21);
this.simPopupButton1.Click += new EventHandler(simPopupButton1_Click);
//
// panel1
//
this.panel1.Controls.Add(this.simLabel1);
this.panel1.Controls.Add(this.simPopupButton1);
this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
this.panel1.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
this.panel1.Size = new System.Drawing.Size(315, 21);
//
// panelMain
//
this.panelMain.Controls.Add(this.panel1);
this.panelMain.Controls.Add(this.monthCalendar1);
this.panelMain.Padding = new System.Windows.Forms.Padding(0);
this.panelMain.BackColor = System.Drawing.Color.Transparent;
this.panel1.ResumeLayout();
this.panelMain.ResumeLayout();
this.panelMain.Size = new Size(monthCalendar1.Height-5, monthCalendar1.Height + panel1.Height-5);
base.Control = panelMain;
}
示例7: CreateControl
public static Control CreateControl(string ctrlName, string partialName)
{
try
{
Control ctrl;
switch (ctrlName)
{
case "Label":
ctrl = new Label();
break;
case "TextBox":
ctrl = new TextBox();
break;
case "PictureBox":
ctrl = new PictureBox();
break;
case "ListView":
ctrl = new ListView();
break;
case "ComboBox":
ctrl = new ComboBox();
break;
case "Button":
ctrl = new Button();
break;
case "CheckBox":
ctrl = new CheckBox();
break;
case "MonthCalender":
ctrl = new MonthCalendar();
break;
case "DateTimePicker":
ctrl = new DateTimePicker();
break;
default:
Assembly controlAsm = Assembly.LoadWithPartialName(partialName);
Type controlType = controlAsm.GetType(partialName + "." + ctrlName);
ctrl = (Control)Activator.CreateInstance(controlType);
break;
}
return ctrl;
}
catch (Exception ex)
{
System.Diagnostics.Trace.WriteLine("create control failed:" + ex.Message);
return new Control();
}
}
示例8: Init
public void Init()
{
db = new DataBase.DataBaseManagement("VetoPTArentir");
animals = db.getAnimalsClient(code);
// suppression de tout les objets du panel
DisplayAppointmentsPanel.Controls.Clear();
// titre
title = new Label();
title.Size = new Size(500, 30);
title.Font = new Font("Arial", 20);
title.Location = new Point(170, 20);
title.Text = "Afficher rendez-vous";
DisplayAppointmentsPanel.Controls.Add(title);
// client
client = new Label();
client.Size = new Size(150, 30);
client.Location = new Point(205, 100);
client.Text = "Nom";
DisplayAppointmentsPanel.Controls.Add(client);
// animal
animal = new ComboBox();
animal.Size = new Size(150, 30);
animal.Location = new Point(205, 130);
animal.Text = "Animal";
animal.SelectedIndexChanged += new EventHandler(animal_SelectedIndexChanged);
DisplayAppointmentsPanel.Controls.Add(animal);
// Date
calendar = new MonthCalendar();
calendar.Location = new Point(165, 170);
DisplayAppointmentsPanel.Controls.Add(calendar);
// raison
reason = new Label();
reason.Size = new Size(150, 30);
reason.Location = new Point(205, 350);
reason.Text = "Objet du rendez-vous";
DisplayAppointmentsPanel.Controls.Add(reason);
// bouton retour
backButton = new Button();
backButton.Size = new Size(100, 30);
backButton.Location = new Point(205, 380);
backButton.Text = "Retour";
DisplayAppointmentsPanel.Controls.Add(backButton);
backButton.Click += new EventHandler(back_Click);
completeAnimals();
clientData = db.detailsClient(code);
client.Text = clientData.Split(':')[1] +" "+ clientData.Split(':')[2];
}
示例9: OnDropDownButtonClick
private void OnDropDownButtonClick(object sender, EventArgs e)
{
Parent.SuspendLayout();
_monthCalendar = new MonthCalendar
{
Location =
new Point(_dropButton.ClientRectangle.Left, _dropButton.ClientRectangle.Bottom)
};
_monthCalendar.DateSelected += OnDateSelected;
_monthCalendar.Location = new Point(_maskedTextBox.Location.X,
_maskedTextBox.Location.Y + _maskedTextBox.Height);
_monthCalendar.BringToFront();
Parent.Controls.Add(_monthCalendar);
Parent.ResumeLayout();
}
示例10: Init
public void Init()
{
db = new DataBase.DataBaseManagement("VetoPTArentir");
// suppression de tout les objets du panel
AddLeavePeriodPanel.Controls.Clear();
// titre
title = new Label();
title.Size = new Size(500, 30);
title.Font = new Font("Arial", 20);
title.Location = new Point(170, 20);
title.Text = "Ajouter un client";
AddLeavePeriodPanel.Controls.Add(title);
// employee
employee = new ComboBox();
employee.Size = new Size(100, 30);
employee.Location = new Point(230, 100);
employee.Text = "Employé";
AddLeavePeriodPanel.Controls.Add(employee);
// nb jours de congés
nbDays = new ComboBox();
nbDays.Size = new Size(100, 30);
nbDays.Location = new Point(230, 130);
nbDays.Text = "Nombre de jours";
AddLeavePeriodPanel.Controls.Add(nbDays);
// Date
calendar = new MonthCalendar();
calendar.Location = new Point(165, 170);
AddLeavePeriodPanel.Controls.Add(calendar);
// bouton confirmer
confirmButton = new Button();
confirmButton.Size = new Size(100, 30);
confirmButton.Location = new Point(150, 310);
confirmButton.Text = "Confirmer";
AddLeavePeriodPanel.Controls.Add(confirmButton);
confirmButton.Click += new EventHandler(confirm_Click);
// bouton annuler
cancelButton = new Button();
cancelButton.Size = new Size(100, 30);
cancelButton.Location = new Point(310, 310);
cancelButton.Text = "Annuler";
AddLeavePeriodPanel.Controls.Add(cancelButton);
cancelButton.Click += new EventHandler(cancel_Click);
}
示例11: PanelExtratoSalas
public PanelExtratoSalas(Panel panel, MonthCalendar calendar)
{
InitializeComponent();
this.mainPanel = panel;
this.calendar = calendar;
calendar.DateSelected += calendar_DateSelected;
old = new Control[panel.Controls.Count];
panel.Controls.CopyTo(this.old, 0);
panel.Controls.Clear();
panel.Controls.Add(this);
this.Dock = DockStyle.Fill;
isOpen = true;
// Carrega lista de salas
_salas = new Academia.Model.Bo.Salas.Model_Bo_Salas().ListaDeSalas();
// Carregar dados automaticamente
btMes.Checked = true;
this.loadTabs();
}
示例12: EIBCalenderBase
public EIBCalenderBase()
{
monthCalender = new MonthCalendar();
monthCalender.Size = new Size(width, height);
//dateTimePicker.CalendarForeColor = Color.White;
monthCalender.Dock = DockStyle.Fill;
this.Size = new Size(width, height);
this._Width = width;
this.Controls.Add(monthCalender);
tpanel = new TransparentPanel();
tpanel.Location = new Point(0, 0);
tpanel.Size = new Size(width, height);
tpanel.Dock = DockStyle.Fill;
this.Controls.Add(tpanel);
tpanel.BringToFront();
tpanel.MouseClick += new MouseEventHandler(tpanel_MouseClick);
tpanel.MouseDown += new MouseEventHandler(tpanel_MouseDown);
tpanel.MouseMove += new MouseEventHandler(tpanel_MouseMove);
tpanel.MouseUp += new MouseEventHandler(tpanel_MouseUp);
this.Resize += new System.EventHandler(EIBDatePickerBase_Resize);
if (string.IsNullOrEmpty(this.Name))
{
this.Name = "calender" + counter;
}
if (string.IsNullOrEmpty(this.ControlName))
{
this.ControlName = this.Name;
}
this.Margin = new Padding(0, 0, 0, 0);
this.Font = SystemFonts.DefaultFont;
this.Layout += new LayoutEventHandler(Control_Layout);
this.SizeChanged += new System.EventHandler(Control_SizeChanged);
}
示例13: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
this.SuspendLayout();
//
// monthCalendar1
//
this.monthCalendar1.Location = new System.Drawing.Point(0, 0);
this.monthCalendar1.Name = "monthCalendar1";
this.monthCalendar1.TabIndex = 0;
this.monthCalendar1.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.monthCalendar1_DateSelected);
//
// sub
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(200, 152);
this.Controls.Add(this.monthCalendar1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "sub";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "sub";
this.ResumeLayout(false);
}
示例14: InitializeComponent
private void InitializeComponent(){
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormRpWriteoffSheet));
this.date2 = new System.Windows.Forms.MonthCalendar();
this.date1 = new System.Windows.Forms.MonthCalendar();
this.labelTO = new System.Windows.Forms.Label();
this.listProv = new System.Windows.Forms.ListBox();
this.label1 = new System.Windows.Forms.Label();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.label5 = new System.Windows.Forms.Label();
this.radioWriteoffProc = new System.Windows.Forms.RadioButton();
this.radioWriteoffPay = new System.Windows.Forms.RadioButton();
this.butCancel = new OpenDental.UI.Button();
this.butOK = new OpenDental.UI.Button();
this.checkAllProv = new System.Windows.Forms.CheckBox();
this.checkAllClin = new System.Windows.Forms.CheckBox();
this.listClin = new System.Windows.Forms.ListBox();
this.labelClin = new System.Windows.Forms.Label();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// date2
//
this.date2.Location = new System.Drawing.Point(288,37);
this.date2.Name = "date2";
this.date2.TabIndex = 2;
//
// date1
//
this.date1.Location = new System.Drawing.Point(32,37);
this.date1.Name = "date1";
this.date1.TabIndex = 1;
//
// labelTO
//
this.labelTO.Location = new System.Drawing.Point(222,37);
this.labelTO.Name = "labelTO";
this.labelTO.Size = new System.Drawing.Size(51,23);
this.labelTO.TabIndex = 28;
this.labelTO.Text = "TO";
this.labelTO.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// listProv
//
this.listProv.Location = new System.Drawing.Point(534,54);
this.listProv.Name = "listProv";
this.listProv.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
this.listProv.Size = new System.Drawing.Size(181,160);
this.listProv.TabIndex = 36;
this.listProv.Click += new System.EventHandler(this.listProv_Click);
//
// label1
//
this.label1.Location = new System.Drawing.Point(532,18);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(104,16);
this.label1.TabIndex = 35;
this.label1.Text = "Providers";
//
// groupBox3
//
this.groupBox3.Controls.Add(this.label5);
this.groupBox3.Controls.Add(this.radioWriteoffProc);
this.groupBox3.Controls.Add(this.radioWriteoffPay);
this.groupBox3.Location = new System.Drawing.Point(32,246);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(281,95);
this.groupBox3.TabIndex = 47;
this.groupBox3.TabStop = false;
this.groupBox3.Text = "Show Insurance Writeoffs";
//
// label5
//
this.label5.Location = new System.Drawing.Point(6,71);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(269,17);
this.label5.TabIndex = 2;
this.label5.Text = "(this is discussed in the PPO section of the manual)";
//
// radioWriteoffProc
//
this.radioWriteoffProc.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
this.radioWriteoffProc.Location = new System.Drawing.Point(9,41);
this.radioWriteoffProc.Name = "radioWriteoffProc";
this.radioWriteoffProc.Size = new System.Drawing.Size(244,23);
this.radioWriteoffProc.TabIndex = 1;
this.radioWriteoffProc.Text = "Using procedure date.";
this.radioWriteoffProc.TextAlign = System.Drawing.ContentAlignment.TopLeft;
this.radioWriteoffProc.UseVisualStyleBackColor = true;
//
// radioWriteoffPay
//
this.radioWriteoffPay.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
this.radioWriteoffPay.Checked = true;
this.radioWriteoffPay.Location = new System.Drawing.Point(9,20);
this.radioWriteoffPay.Name = "radioWriteoffPay";
this.radioWriteoffPay.Size = new System.Drawing.Size(244,23);
this.radioWriteoffPay.TabIndex = 0;
this.radioWriteoffPay.TabStop = true;
this.radioWriteoffPay.Text = "Using insurance payment date.";
this.radioWriteoffPay.TextAlign = System.Drawing.ContentAlignment.TopLeft;
//.........这里部分代码省略.........
示例15: InitializeComponent
private void InitializeComponent(){
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormClaimsSend));
this.label6 = new System.Windows.Forms.Label();
this.contextMenuStatus = new System.Windows.Forms.ContextMenu();
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
this.calendarTo = new System.Windows.Forms.MonthCalendar();
this.calendarFrom = new System.Windows.Forms.MonthCalendar();
this.label2 = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.panelSplitter = new System.Windows.Forms.Panel();
this.panelHistory = new System.Windows.Forms.Panel();
this.gridHistory = new OpenDental.UI.ODGrid();
this.panel1 = new System.Windows.Forms.Panel();
this.ToolBarHistory = new OpenDental.UI.ODToolBar();
this.butDropTo = new OpenDental.UI.Button();
this.butDropFrom = new OpenDental.UI.Button();
this.textDateFrom = new OpenDental.ValidDate();
this.textDateTo = new OpenDental.ValidDate();
this.comboClinic = new System.Windows.Forms.ComboBox();
this.labelClinic = new System.Windows.Forms.Label();
this.gridMain = new OpenDental.UI.ODGrid();
this.ToolBarMain = new OpenDental.UI.ODToolBar();
this.contextMenuEclaims = new System.Windows.Forms.ContextMenu();
this.comboCustomTracking = new System.Windows.Forms.ComboBox();
this.labelCustomTracking = new System.Windows.Forms.Label();
this.panelHistory.SuspendLayout();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// label6
//
this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label6.Location = new System.Drawing.Point(107, -44);
this.label6.Name = "label6";
this.label6.Size = new System.Drawing.Size(112, 44);
this.label6.TabIndex = 21;
this.label6.Text = "Insurance Claims";
this.label6.TextAlign = System.Drawing.ContentAlignment.TopCenter;
//
// imageList1
//
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
this.imageList1.Images.SetKeyName(0, "");
this.imageList1.Images.SetKeyName(1, "");
this.imageList1.Images.SetKeyName(2, "");
this.imageList1.Images.SetKeyName(3, "");
this.imageList1.Images.SetKeyName(4, "");
this.imageList1.Images.SetKeyName(5, "");
this.imageList1.Images.SetKeyName(6, "");
//
// calendarTo
//
this.calendarTo.Location = new System.Drawing.Point(196, 29);
this.calendarTo.MaxSelectionCount = 1;
this.calendarTo.Name = "calendarTo";
this.calendarTo.TabIndex = 42;
this.calendarTo.Visible = false;
this.calendarTo.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.calendarTo_DateSelected);
//
// calendarFrom
//
this.calendarFrom.Location = new System.Drawing.Point(6, 29);
this.calendarFrom.MaxSelectionCount = 1;
this.calendarFrom.Name = "calendarFrom";
this.calendarFrom.TabIndex = 39;
this.calendarFrom.Visible = false;
this.calendarFrom.DateSelected += new System.Windows.Forms.DateRangeEventHandler(this.calendarFrom_DateSelected);
//
// label2
//
this.label2.Location = new System.Drawing.Point(196, 5);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(72, 18);
this.label2.TabIndex = 36;
this.label2.Text = "To";
this.label2.TextAlign = System.Drawing.ContentAlignment.BottomRight;
//
// label1
//
this.label1.Location = new System.Drawing.Point(1, 5);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(75, 18);
this.label1.TabIndex = 34;
this.label1.Text = "From";
this.label1.TextAlign = System.Drawing.ContentAlignment.BottomRight;
//
// panelSplitter
//
this.panelSplitter.Cursor = System.Windows.Forms.Cursors.SizeNS;
this.panelSplitter.Location = new System.Drawing.Point(2, 398);
this.panelSplitter.Name = "panelSplitter";
this.panelSplitter.Size = new System.Drawing.Size(961, 6);
this.panelSplitter.TabIndex = 50;
this.panelSplitter.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panelSplitter_MouseDown);
this.panelSplitter.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panelSplitter_MouseMove);
this.panelSplitter.MouseUp += new System.Windows.Forms.MouseEventHandler(this.panelSplitter_MouseUp);
//
// panelHistory
//.........这里部分代码省略.........