小智 3

检查此示例应用程序,如Kendo UI 和 ASP.NET WebForms:构建任务管理器,以下是开始使用它的步骤。

- In Visual Studio, create a new ASP.NET Web application.
- Download Kendo UI.
- From the Kendo UI download, I copied the following files into the TaskManager/Scripts folder:     
     1.js/jquery.min.is   
     2.js/keno.all.min.js
- In the TaskManager application I created a new folder called "kendo" in the /Content folder.

 - From the Kendo UI download, copy the following files / folders into the /Content:     
    1.styles/kendo.common.min.css    
    2.styles/kendo.silver.min.css   
    3.styles/Silver (folder)
Run Code Online (Sandbox Code Playgroud)

将这些包含在头部部分:

<head>
<title></title>
    <link href="Content/kendo/kendo.common.min.css" rel="Stylesheet" type="text/css" />
    <link href="Content/kendo/kendo.silver.min.css" rel="Stylesheet" type="text/css" />
    <link href="Content/Site.css" rel="Stylesheet" type="text/css" />

    <script src="Scripts/jquery.min.js" type="text/javascript"></script>
    <script src="Scripts/kendo.all.min.js" type="text/javascript"></script>
    <script src="Scripts/json.extensions.js" type="text/javascript"></script>
</head>
Run Code Online (Sandbox Code Playgroud)

请访问Codeplex - Kendo UI ASP.NET 示例应用程序以获取 Kendo 的示例和用法。