Initial commit
This commit is contained in:
48
BMS_D1000/Form/fmSetMenu.cs
Normal file
48
BMS_D1000/Form/fmSetMenu.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
using BMS_D1000H.BMSConstData;
|
||||
using BMS_D1000H.DataStructs;
|
||||
using BMS_D1000H.Utils.Functions;
|
||||
|
||||
namespace BMS_D1000H
|
||||
{
|
||||
public partial class fmSetMenu : Form
|
||||
{
|
||||
public fmSetMenu()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void btnParamSet_Click(object sender, EventArgs e)
|
||||
{
|
||||
((fmBMSMain)(Owner)).ChangeScreen(0, 0, ScreenID.PARAM_SET_SCREEN_ID);
|
||||
}
|
||||
|
||||
private void btnNetConfig_Click(object sender, EventArgs e)
|
||||
{
|
||||
((fmBMSMain)(Owner)).ChangeScreen(0, 0, ScreenID.NET_CONFIG_SCREEN_ID);
|
||||
}
|
||||
|
||||
private void btnMain_Click(object sender, EventArgs e)
|
||||
{
|
||||
((fmBMSMain)(Owner)).ChangeScreen(0, 0, ScreenID.MAIN_SCREEN_ID);
|
||||
}
|
||||
|
||||
private void btnPasswordSet_Click(object sender, EventArgs e)
|
||||
{
|
||||
((fmBMSMain)(Owner)).ChangeScreen(ScreenID.SET_MENU_SCREEN_ID, ScreenID.CHANGE_PASSWORD_SCREEN_ID, ScreenID.PASSWORD_SCREEN_ID);
|
||||
}
|
||||
|
||||
private void btnSystemSet_Click(object sender, EventArgs e)
|
||||
{
|
||||
((fmBMSMain)(Owner)).ChangeScreen(0, 0, ScreenID.SYSTEM_SET_SCREEN);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user