System.ComponentModel.Design.DesignerOptionService.ShowDialog C# (CSharp) Метод

ShowDialog() защищенный Метод

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
Результат bool
        protected virtual bool ShowDialog(DesignerOptionCollection options, object optionObject)
        {
            return false;
        }

Usage Example

Пример #1
0
 public bool ShowDialog()
 {
     return(_optionService.ShowDialog(this, _propertiesProvider));
 }