网站首页 > 基础教程 正文
Kendo UI for Angular的按钮组件提供了具有任意内容的可点击UI功能。
Kendo UI for Angular官方最新版免费下载试用,历史版本下载,在线文档和帮助文件下载-慧都网
安装
使用快速设置 (Angular CLI) 或手动添加包。
使用 Angular CLI 进行快速设置
Angular CLI 支持通过 ng add 命令添加包,该命令一步执行一组其他单独需要的命令。
ng add @progress/kendo-angular-buttons
手动设置
您在安装过程中引用的所有组件都将出现在应用程序的最终包中。
为避免最终使用您实际上不需要的组件,请执行以下任一操作:
- 使用 ButtonsModule 一次性导入所有 Buttons 组件
- 通过将特定的 Buttons 组件添加为单独的 NgModule 来导入它。
1. 下载并安装软件包。
npm install --save @progress/kendo-angular-buttons @progress/kendo-angular-l10n @progress/kendo-angular-popup @progress/kendo-angular-common @progress/kendo-licensing
2. 安装后,导入所需组件的 NgModule。
要获取所有包组件,请在应用程序根或功能模块中导入 ButtonsModule。
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { ButtonsModule } from '@progress/kendo-angular-buttons';
import { AppComponent } from './app.component';
@NgModule({
bootstrap: [AppComponent],
declarations: [AppComponent],
imports: [BrowserModule, BrowserAnimationsModule, ButtonsModule]
})
export class AppModule {
}
该包还为各个组件导出以下模块:
- ButtonModule
- ButtonGroupModule
- ChipModule
- DropDownButtonModule
- FloatingActionButtonModule
- SplitButtonModule
要减小应用程序的大小,请仅包含您需要的模块。
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
// Imports the Button module
import { ButtonModule } from '@progress/kendo-angular-buttons';
// Imports the ButtonGroup module
import { ButtonGroupModule } from '@progress/kendo-angular-buttons';
@NgModule({
bootstrap: [AppComponent],
declarations: [AppComponent],
imports: [
BrowserModule, BrowserAnimationsModule,
ButtonModule, ButtonGroupModule
]
})
export class AppModule {
}
3. 您需要为Angular安装Kendo UI主题来设置组件样式。
4. 按照 Kendo UI for Angular My License 页面上的说明激活您的许可证,如果您的应用程序已包含 Kendo UI 许可文件,则可以跳过此步骤。
依赖关系
Buttons 包要求您在应用程序中安装以下对等依赖项:
- @angular/common
- @angular/core
- @progress/kendo-angular-l10n
- @progress/kendo-angular-popup
- @progress/kendo-angular-common
- @progress/kendo-licensing
- rxjs
Buttons包利用了Angular动画系统,它支持一组特定的浏览器。
Kendo UI for Angular是Kendo UI系列商业产品的最新产品。Kendo UI for Angular是专用于Angular开发的专业级Angular组件。telerik致力于提供纯粹的高性能Angular UI组件,无需任何jQuery依赖关系。
了解最新Kendo UI最新资讯,请关注Telerik中文网!
猜你喜欢
- 2024-11-11 Bootstrap:CSS之光荣 美的css售后服务新系统登陆
- 2024-11-11 DTD怎样进行元素类型定义?【语法格式】
- 2024-11-11 React常用按钮组件示例 react sidebar
- 2024-11-11 七爪源码:React-Bootstrap UI 库入门
- 2024-11-11 bootstrap基础快速入门-10 dropdown下拉框
- 2024-11-11 2021,排名前 15 的 Vue 后台管理模板
- 2024-11-11 BootStrap简介及应用要点 bootstrap介绍和优点
- 2024-11-11 BootstrapBlazor实战 Chart 图表使用(1)
- 2024-11-11 22、Bootstrap 常用组件有哪些?(了解)
- 2024-11-11 七爪源码:在 React 中开始使用 Bootstrap
- 最近发表
- 标签列表
-
- gitpush (61)
- pythonif (68)
- location.href (57)
- tail-f (57)
- pythonifelse (59)
- deletesql (62)
- c++模板 (62)
- css3动画 (57)
- c#event (59)
- linuxgzip (68)
- 字符串连接 (73)
- nginx配置文件详解 (61)
- html标签 (69)
- c++初始化列表 (64)
- exec命令 (59)
- canvasfilltext (58)
- mysqlinnodbmyisam区别 (63)
- arraylistadd (66)
- node教程 (59)
- console.table (62)
- c++time_t (58)
- phpcookie (58)
- mysqldatesub函数 (63)
- window10java环境变量设置 (66)
- c++虚函数和纯虚函数的区别 (66)