Button control in SOLIDWORKS property Manager Page

Edit ArticleEdit Article

Button control
Button control

In order to create a button in the property manager page, it is required to declare the property of delegate type Action.

The pointer to void function assigned to this property is a handler of the button:

using System;

public class ButtonDataModel
{
    public Action Button => OnButtonClick;

    private void OnButtonClick()
    {
        //TODO: Handle button click
    }
}

Product of Xarial Product of Xarial