37 lines
856 B
C#
37 lines
856 B
C#
using FCOMMON;
|
|
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 : fBase
|
|
{
|
|
public fOTConfirmValue()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void fOTConfirmValue_Load(object sender, EventArgs e)
|
|
{
|
|
EnsureVisibleAndUsableSize();
|
|
}
|
|
|
|
private void btOK_Click(object sender, EventArgs e)
|
|
{
|
|
this.DialogResult = DialogResult.OK;
|
|
}
|
|
|
|
private void radInput_CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
nudValue.Enabled = radInput.Checked;
|
|
}
|
|
}
|
|
}
|