36 lines
		
	
	
		
			798 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			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;
 | |
|         }
 | |
|     }
 | |
| }
 | 
