....
This commit is contained in:
35
SubProject/FPJ0000/OtConfirm/fOTConfirmValue.cs
Normal file
35
SubProject/FPJ0000/OtConfirm/fOTConfirmValue.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user