DragonNest/Common/QuestTool/Backup/DNQuest/Conditions/Condition_Level.cs
2024-12-19 09:48:26 +08:00

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;
}
}
}