12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- 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.InitialSet
- {
- public partial class FrmSystemSet : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public FrmSystemSet()
- {
- InitializeComponent();
- this.Load += new EventHandler(FrmSystemSet_Load);
- this.btnAdd.Click += new EventHandler(btnAdd_Click);
- this.trvSystemSet.HideSelection = false;
-
-
-
- this.trvSystemSet.AfterSelect += new TreeViewEventHandler(trvSystemSet_AfterSelect);
-
- this.btnDelete.Click += new EventHandler(btnDelete_Click);
- this.panelEx1.BorderStyle = BorderStyle.FixedSingle;
- this.panelEx1.BorderColor = UIBlueThemeResources.BorderAreaColor;
- this.panelEx1.BackColor = UIBlueThemeResources.AreaBackgroundColor;
-
-
- this.tab.SelectedIndexChanged += tab_SelectedIndexChanged;
- }
- protected virtual void tab_SelectedIndexChanged(object sender, EventArgs e)
- {
-
- }
- protected virtual void btnDelete_Click(object sender, EventArgs e)
- {
- }
- protected virtual void trvSystemSet_AfterSelect(object sender, TreeViewEventArgs e)
- {
- }
- protected virtual void btnAdd_Click(object sender, EventArgs e)
- {
- }
- protected virtual void FrmSystemSet_Load(object sender, EventArgs e)
- {
- }
-
- }
- }
|