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(); } } }