Stetic.WidgetDesignerFrontend.NotifyModifiedChanged C# (CSharp) Method

NotifyModifiedChanged() public method

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

Usage Example

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