InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by Command Design Pattern in WPF? |
|
Answer» In object-oriented design patterns, the command pattern is one of the strongest design patterns. A command pattern refers to a design pattern that uses an object to encapsulate information required for triggering an action or event later. Method name, an object that owns the method, and the parameters of the method are among the information included here. In situations where you NEED to execute operations BASED on user requests, the command pattern is the best approach to MANAGE objects. WPF's command design pattern consists of the following members: |
|