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

27 lines
687 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.Executions
{
public partial class Exe_ProbChoice : Base_UserControl
{
public Exe_ProbChoice() : base()
{
InitializeComponent();
this.textBox_Rand.Validating += new CancelEventHandler(Validate);
this.textBox_Seed.Validating += new CancelEventHandler(Validate);
}
public void Set_Value(string p_rand, string p_seed)
{
textBox_Rand.Text = p_rand;
textBox_Seed.Text = p_seed;
}
}
}