属性集是';t是通过实现UITypeEditor来触发的
本文关键字:UITypeEditor 实现 属性 | 更新日期: 2023-09-27 18:00:42
我有一个属性网格,当点击其中一个属性的按钮时,会填充某些字段。然而,属性集不会被触发。我不知道为什么。
private OptoSigmaSettings dataToGet = new OptoSigmaSettings();
[Editor(typeof(OptoSetupFormEditor), typeof(UITypeEditor))]
[TypeConverter(typeof(ExpandableObjectConverter))]
[Category("Setup")]
public OptoSigmaSettings DataToGet
{
get { return dataToGet; }
set
{
MessageBox.Show("Im here"); //This isnt happening.
dataToGet = value; }
}
[Serializable]
public class OptoSigmaSettings
{
private int duration = 0;
private string direction = "Positive";
private string functionToCall = "Home";
public string FunctionToCall
{
get { return functionToCall; }
set { functionToCall = value; }
}
public int Duration
{
get { return duration; }
set { duration = value; }
}
public string Direction
{
get { return direction; }
set { direction = value; }
}
}
public class OptoSetupFormEditor : UITypeEditor
{
public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context)
{
return UITypeEditorEditStyle.Modal;
}
public override object EditValue(ITypeDescriptorContext context, System.IServiceProvider provider, object value)
{
IWindowsFormsEditorService service = provider.GetService(typeof(IWindowsFormsEditorService)) as IWindowsFormsEditorService;
OptoSigmaSettings opto = value as OptoSigmaSettings;
if (service != null && opto != null)
{
using (OptoSigmaSetup form = new OptoSigmaSetup())
{
DialogResult result;
result = service.ShowDialog(form);
if (result == DialogResult.OK)
{
opto.Direction = form.Direction;
opto.FunctionToCall = form.FunctionToCall;
opto.Duration = form.Duration;
}
}
}
return opto;
}
}
这是一个使用标准属性网格的WinForms应用程序。
问题是编辑器返回完全相同的引用(得到opto,返回opto)。因此,即使你修改了opto的一些内部属性,opto-ref也不会改变。如果您绝对需要进入set访问器,请在EditValue中创建一个新的OptoSigmaSettings,并使用表单返回的内容修改其属性。请注意,我没有在您的代码中看到如何使用现有opto的内容初始化表单。
附言:我刚刚看到你在上面的评论。请注意,如果您没有初始化dataToGet,那么它就是null,这就是它第一次工作的原因(null与表单返回的值不同)。
注2:Marino说得对,即使没有调用集合,对象的属性仍然会更新(Direction、FunctionToCall和Duration)。
这是最终的解决方案:
public override object EditValue(ITypeDescriptorContext context, System.IServiceProvider provider, object value)
{
IWindowsFormsEditorService service = provider.GetService(typeof(IWindowsFormsEditorService)) as IWindowsFormsEditorService;
OptoSigmaLinearSettings opto = value as OptoSigmaLinearSettings;
opto = (OptoSigmaLinearSettings)value;
if (opto == null)
{
opto = new OptoSigmaLinearSettings();
}
if (service != null)
{
using (OptoSigmaLinearSetup form = new OptoSigmaLinearSetup(opto))
{
DialogResult result;
result = service.ShowDialog(form);
if (result == DialogResult.OK)
{
opto = form.GeneralSettings;
}
}
}
return opto;
}
我已经有一段时间没有使用属性网格了,但这是我的2个元素。
此处没有设置您创建的DataToGet子类上的DataToGet属性。
在您的代码中:
OptoSigmaSettings opto=作为OptoSigma Settings的值;
看起来缺少的是将值强制转换为DataToGet,然后设置其DataToGet属性:
DataToGet opto=作为DataToGet的值;光学。DataToGet=myobject;