123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- using LYFZ.ComponentLibrary;
- 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 LYFZ.Software.UI.BulletinBoard
- {
- public partial class FrmBulletinBoard : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmBulletinBoard()
- {
- InitializeComponent();
- //this.IsCustomScrollBar = true;
- this.Load += new EventHandler(FrmBulletinBoard_Load);
- this.radBulletinBoard.Click += new EventHandler(radBulletinBoard_Click);
- this.radInternalMail.Click += new EventHandler(radInternalMail_Click);
- this.btnAnnouncement.Click += new EventHandler(btnAnnouncement_Click);
- this.dgv.DoubleClick += new EventHandler(dgv_DoubleClick);
- this.btnSelect.Click += new EventHandler(btnSelect_Click);
- this.btnReleaseMail.Click += new EventHandler(btnReleaseMail_Click);
-
- this.btnClose.Click += new EventHandler(btnClose_Click);
- this.btnDelete.Click += new EventHandler(btnDelete_Click);
- panelEx2.BorderStyle = BorderStyle.FixedSingle;
- panelEx2.BorderColor = UIBlueThemeResources.BorderAreaColor;
- panelEx2.BackColor = UIBlueThemeResources.AreaBackgroundColor;
- panelEx3.BackColor = UIBlueThemeResources.BorderAreaColor;
- UcNavigationTool.LabTitle = "公告栏";
- this.dgv.RefreshTheme();
- this.radInbox.Click += radInbox_Click;
- this.radOutbox.Click += radOutbox_Click;
- this.Shown += FrmBulletinBoard_Shown;
- }
- protected virtual void FrmBulletinBoard_Shown(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void radOutbox_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void radInbox_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnDelete_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnClose_Click(object sender, EventArgs e)
- {
- throw new NotImplementedException();
- }
- protected virtual void btnReleaseMail_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnSelect_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void dgv_DoubleClick(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void btnAnnouncement_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void radInternalMail_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void radBulletinBoard_Click(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- protected virtual void FrmBulletinBoard_Load(object sender, EventArgs e)
- {
- //throw new NotImplementedException();
- }
- }
- }
|