12345678910111213141516171819202122232425262728293031323334353637383940 |
- 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
- {
- public partial class frmSystemSetting : LYFZ.ComponentLibrary.BaseContentsFormMain
- {
- public frmSystemSetting()
- {
- InitializeComponent();
-
- }
- public LYFZ.ComponentLibrary.ButtonEx BtnSave {
- get { return this.btnSave; }
- }
- public LYFZ.ComponentLibrary.ButtonEx BtnClose
- {
- get { return this.btnClose; }
- }
- public ComponentLibrary.TabControlEx SetTabControlEx
- {
- get { return this.tabControlEx1; }
- }
- public System.Windows.Forms.TabPage GeneralSettingTabPage
- {
- get { return this.tabPage1; }
- }
- }
- }
|