NotifyBindField() public method

public NotifyBindField ( ) : void
return void
Example #1
0
 protected virtual void AddWidgetCommands(ObjectWrapper wrapper)
 {
     if (allowBinding && wrapper != RootWidget)
     {
         // Show the Bind to Field button only for children of the root container.
         ToolButton bindButton = new ToolButton(null, Catalog.GetString("Bind to Field"));
         bindButton.IsImportant = true;
         bindButton.Clicked    += delegate { frontend.NotifyBindField(); };
         bindButton.Show();
         Insert(bindButton, -1);
     }
     AddCommands(wrapper);
 }