System.ComponentModel.Design.DesignerOptionService.ShowDialog C# (CSharp) Method

ShowDialog() protected method

This method must be implemented to show the options dialog UI for the given object.
protected ShowDialog ( DesignerOptionCollection options, object optionObject ) : bool
options DesignerOptionCollection
optionObject object
return bool
        protected virtual bool ShowDialog(DesignerOptionCollection options, object optionObject)
        {
            return false;
        }

Usage Example

示例#1
0
 public bool ShowDialog()
 {
     return(_optionService.ShowDialog(this, _propertiesProvider));
 }