Execute a WPF method programmatically
Procedure
- From the navigator, click .
- Add a form, or from the Forms list, select an existing form.
- Click .
- Click the Method tab.
- Add a new method select it, and then click the Properties tab.
- In the Name field, enter SampleMethod.
- Click the Parameters tab, and then configue inputs, as required.
- Click the MainForm.xaml tab.
- Click the Toolbox tab.
- Expand the Buttons control group, and then select a button.
- Click and drag the control to the desired position in the Designer.Note:To apply the properties of a control to another control, click and drag the control to another control in the document tree. The Applying <control (control name)> to Target dialog box appears where you can select the option you want to use to apply to the control.
- Right-click the button control and select Add Event Handler.The Event Triggers dialog box appears.
- Expand the button control, select Click, and then click OK.The code-behind editor opens.
- Add the call to ExecuteMethod("SampleMethod").
- Click Save.