25 lines
585 B
C#
25 lines
585 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 DNNpc.Executions
|
|
{
|
|
public partial class Exe_Condition : UserControl
|
|
{
|
|
public Exe_Condition()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void Set_Value(string p_condition, string p_true, string p_false)
|
|
{
|
|
textBox_Condition.Text = p_condition;
|
|
textBox_true.Text = p_true;
|
|
textBox_false.Text = p_false;
|
|
}
|
|
}
|
|
}
|