Navigation may be considered on of the most important concepts in an Angular 9 application. Luckily, route navigation is extremely easy to implement...
Category - Angular
In order to communicate with web services in Angular, it is best to use the HttpClient. The HttpClient has a number of benefits such as testability...
When creating and using services in an Angular application, it is recommended to utilize dependency injection. Dependency injection is built into the...
Passing data between Angular components can be achieved using both the @Input and @Output decorators. To pass data to a child component, create a...
Angular Structural Directives are used to add and remove items to the DOM. The three Angular directives we will talk about in this video is the ngIf...
Generally, If you want to transform data in your Angular application, you write the code in the component. For example, if you want to transform...
One of the primary functions of an application is to respond to user interactions using events. In Angular, we use DOM events. In order to invoke...
Desktop to Web: One-way Data Binding with Angular Interpolation and Property Binding
Data binding is a core concept in Angular which allows communication between a component and the DOM, making it very easy to create interactive...
A core responsibility for a desktop developer is to provide a user interface (UI) to end-users. In WPF this is done with Windows and UserControls...
In this video, I show you how to create an Angular application, we compare the Angular file structure to a WPF app file structure, and we see how we...