Stetic.WidgetDesigner.CreateActionGroupDesigner C# (CSharp) Method

CreateActionGroupDesigner() public method

public CreateActionGroupDesigner ( ) : ActionGroupDesigner
return ActionGroupDesigner
        public ActionGroupDesigner CreateActionGroupDesigner()
        {
            if (disposed)
                throw new ObjectDisposedException ("WidgetDesigner");
            return new ActionGroupDesigner (editedProject, componentName, null, this, true);
        }

Usage Example

Example #1
0
        public DesignerView(Stetic.Project project, ProjectItemInfo item)
        {
            this.widget = (WidgetInfo) item;

            // Widget design tab

            design = project.CreateWidgetDesigner (widget, true);

            // Actions design tab

            actionbox = design.CreateActionGroupDesigner ();

            // Designers tab

            AppendPage (design, new Gtk.Label (Catalog.GetString ("Designer")));
            AppendPage (actionbox, new Gtk.Label (Catalog.GetString ("Actions")));
            TabPos = Gtk.PositionType.Bottom;
        }
All Usage Examples Of Stetic.WidgetDesigner::CreateActionGroupDesigner