using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Drawing.Design;
|
using System.Linq;
|
using System.Text;
|
using System.Windows.Forms;
|
|
namespace DPumpHydr.WinFrmUI.WenSkin.Design.Editor
|
{
|
public class TextEditFormUITypeEditor : UITypeEditor
|
{
|
public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value)
|
{
|
var picker = new EditForm.MultilineTextEditForm(value?.ToString());
|
if (picker.ShowDialog() == DialogResult.OK)
|
{
|
return picker.Message;
|
}
|
return value;
|
}
|
|
public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context)
|
{
|
return UITypeEditorEditStyle.Modal;
|
}
|
}
|
}
|