Files
Groupware/SubProject/FPJ0000/OtConfirm/fOTConfirmValue.cs
2021-12-20 12:42:18 +09:00

36 lines
798 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace FPJ0000.OtConfirm
{
public partial class fOTConfirmValue : Form
{
public fOTConfirmValue()
{
InitializeComponent();
}
private void fOTConfirmValue_Load(object sender, EventArgs e)
{
}
private void btOK_Click(object sender, EventArgs e)
{
this.DialogResult = DialogResult.OK;
}
private void radInput_CheckedChanged(object sender, EventArgs e)
{
nudValue.Enabled = radInput.Checked;
}
}
}