New to Kendo UI for Angular? Start a free 30-day trial
WindowModule
Updated on Jun 13, 2025
Represents the NgModule definition for the Window component.
Use the WindowModule to include all Window components and directives in your application.
typescript
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { WindowModule } from '@progress/kendo-angular-window';
import { AppComponent } from './app.component';
@NgModule({
bootstrap: [AppComponent],
declarations: [AppComponent],
imports: [BrowserModule, WindowModule]
})
export class AppModule {}