根据我的研究,在母体形式上向中心传递信息Box表格的唯一途径是撰写一个习俗信息Box类。 我成功地实施了“习俗与现实”表格,并能够把我的错误和信息信息放在括号内。 然而,我无法指出,如何使习惯做法Box形成静态,以便我不必立即提出我的新的习俗模式。 我只想说一种静态的方法,例如:
Custom Custom(类型、信息等)
我的电文类基本版本如下。 理想的情况是,我要具备显示这种形式的功能,而不必立即通报我的习俗。 这是可能的吗?
namespace MarineService
{
public partial class CustomMessageForm : DevExpress.XtraEditors.XtraForm
{
private static CustomMessageForm form = new CustomMessageForm();
public CustomMessageForm()
{
InitializeComponent();
}
public void ShowDialog(string type, string message)
{
this.Text = type + "Information";
this.groupMessage.Text = type + "Information";
this.memoEditMessage.Lines[0] = message;
}
}
}