Stetic.WidgetDesignerFrontend.NotifyRootWidgetChanging C# (CSharp) Method

NotifyRootWidgetChanging() public method

public NotifyRootWidgetChanging ( ) : void
return void
        public void NotifyRootWidgetChanging()
        {
            GuiDispatch.InvokeSync (
                delegate { if (!disposed) designer.NotifyRootWidgetChanging (); }
            );
        }

Usage Example

Example #1
0
 void OnProjectReloading(object s, EventArgs a)
 {
     if (frontend != null)
     {
         frontend.NotifyRootWidgetChanging();
     }
 }