27 lines
693 B
C#
27 lines
693 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DNQuest.Conditions
|
|
{
|
|
public partial class Condition_Level : Base_UserControl
|
|
{
|
|
public Condition_Level() : base()
|
|
{
|
|
InitializeComponent();
|
|
|
|
this.textBox_Value.Validating += new CancelEventHandler(Validate);
|
|
this.textBox_Oper.Validating += new CancelEventHandler(Validate);
|
|
}
|
|
|
|
public void Set_Value(string p_oper, string p_value)
|
|
{
|
|
textBox_Oper.Text = p_oper;
|
|
textBox_Value.Text = p_value;
|
|
}
|
|
}
|
|
}
|